creation dossier uploads s'il n'existe pas 2

This commit is contained in:
Mathieu Oriol
2024-12-06 09:40:04 +01:00
parent 24a52191e0
commit 3cc35ea72d

View File

@@ -13,7 +13,7 @@ RUN npm install
# Copy the rest of project files into this image # Copy the rest of project files into this image
COPY . . COPY . .
RUN if [ ! -d uploads ]; then mkdir uploads fi RUN if [ ! -d uploads ]; then mkdir uploads; fi
# Start the application # Start the application
CMD npm start CMD npm start