We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151276c commit fcf0029Copy full SHA for fcf0029
Dockerfile
@@ -0,0 +1,8 @@
1
+FROM node:22-alpine3.18
2
+WORKDIR /app
3
+COPY package.json .
4
+RUN npm install
5
+COPY . .
6
+RUN npm run build
7
+EXPOSE 3000
8
+CMD [ "npm", "start" ]
0 commit comments