1
0
forked from noxious/client

captain def.

This commit is contained in:
Dennis Postma 2024-07-10 20:49:28 +02:00
parent 811a1148fc
commit 85f15e5a01

11
captain-definition Normal file
View File

@ -0,0 +1,11 @@
{
"schemaVersion": 2,
"dockerfileLines": [
"FROM node:22.4.1-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-ntc",
"CMD [ \"npm\", \"start\" ]"
]
}