John hace 7 meses
padre
commit
6cfee38918
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  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"]