Actualizar captain-definition

This commit is contained in:
marsalva 2026-02-04 23:17:38 +00:00
parent 80e1e62094
commit 6001c24be4
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
"dockerfileLines": [
"FROM node:20-alpine",
"WORKDIR /app",
"COPY . .",
"RUN rm -rf node_modules package-lock.json",
"COPY package*.json ./",
"RUN npm install",
"COPY . .",
"EXPOSE 10000",
"CMD [\"node\", \"server.js\"]"
]