Tru different definition

This commit is contained in:
Kuba Orlik 2023-12-10 16:57:07 +01:00
parent 43f7871267
commit 06c08ef93b

View File

@ -1,4 +1,14 @@
{
"schemaVersion": 2,
"templateId": "node/19"
"schemaVersion": 2,
"dockerfileLines": [
"FROM node:20-alpine",
"RUN mkdir -p /usr/src/app",
"WORKDIR /usr/src/app",
"COPY ./ /usr/src/app",
"RUN npm install && npm cache clean --force && npm run build",
"ENV NODE_ENV production",
"ENV PORT 80",
"EXPOSE 80",
"CMD [ \"npm\", \"start\" ]"
]
}