Files
HowDoYouConvert/captain-definition
2026-03-07 05:43:12 +00:00

13 lines
249 B
Plaintext

{
"schemaVersion": 2,
"dockerfileLines": [
"FROM node:20",
"WORKDIR /app",
"COPY hdyc-svelte/package*.json ./",
"RUN npm install",
"COPY hdyc-svelte/ .",
"RUN npm run build",
"CMD [\"npm\", \"run\", \"start\"]"
]
}