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 ad2d707 commit 991aa46Copy full SHA for 991aa46
.dockerignore
@@ -0,0 +1,8 @@
1
+.vscode/
2
+
3
+.git/
4
+.github/
5
6
+node_modules/
7
+*.log
8
Dockerfile
@@ -0,0 +1,11 @@
+FROM node:lts
+WORKDIR /app
+COPY package.json /app
+COPY package-lock.json /app
+RUN npm ci
+COPY . /app
9
+RUN npm run build
10
11
+CMD ["npm", "run", "start"]
0 commit comments