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