diff --git a/traque-back/Dockerfile b/traque-back/Dockerfile index fd156a3..1a4def1 100644 --- a/traque-back/Dockerfile +++ b/traque-back/Dockerfile @@ -13,7 +13,7 @@ RUN npm install # Copy the rest of project files into this image COPY . . -RUN if [ ! -d uploads ]; then mkdir uploads fi +RUN if [ ! -d uploads ]; then mkdir uploads; fi # Start the application CMD npm start