Actualizar captain-definition

This commit is contained in:
marsalva 2026-02-04 23:09:53 +00:00
parent d3c86756f0
commit 7f3fd7619a
1 changed files with 4 additions and 4 deletions

View File

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