We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 200252e commit 6ce4744Copy full SHA for 6ce4744
1 file changed
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM node:22-alpine
2
+
3
+WORKDIR /app
4
5
+COPY package*.json ./
6
+RUN npm ci --only=production || npm install
7
8
+COPY . .
9
+RUN npm run build
10
11
+ENTRYPOINT ["node", "build/index.js"]
0 commit comments