We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bccda27 + 8a68944 commit 1311149Copy full SHA for 1311149
.dockerignore
@@ -1,2 +1,5 @@
1
node_modules
2
lib/*
3
+packaging
4
+infrastructure
5
+test
Dockerfile
@@ -0,0 +1,15 @@
+FROM node:14.17-alpine
+
+RUN apk upgrade --update-cache --available && \
+ apk add openssl && \
+ rm -rf /var/cache/apk/*
6
7
+WORKDIR /app
8
9
+COPY . .
10
11
+RUN npm install
12
13
+RUN npm run build
14
15
+CMD ["node", "lib/server.js"]
0 commit comments