We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757674c commit ff27ae9Copy full SHA for ff27ae9
.dockerignore
@@ -1,3 +1,4 @@
1
.git
2
node_modules
3
-*.png
+*.png
4
+screenshots
Dockerfile
@@ -4,13 +4,9 @@ WORKDIR /app
5
COPY . .
6
7
-RUN rm -rf screenshots/
8
-
9
RUN npm install --production
10
11
-RUN apk --no-cache add openssl
12
13
-RUN sh generate-cert.sh
+RUN apk --no-cache add openssl && sh generate-cert.sh && rm -rf /var/cache/apk/*
14
15
EXPOSE 80 443
16
0 commit comments