John il y a 7 mois
Parent
commit
6cfee38918
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4 2
      epub_node/Dockerfile

+ 4 - 2
epub_node/Dockerfile

@@ -1,5 +1,7 @@
 FROM node:22.12.0
-WORKDIR /app
+COPY package*.json ./
+RUN npm install
+COPY . .
 EXPOSE 3000
-VOLUME /app
+VOLUME /app/base_files
 CMD ["npm", "run", "serve"]