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 23fac86 commit 9933112Copy full SHA for 9933112
.dockerignore
@@ -1,2 +1,6 @@
1
node_modules
2
.git
3
+.github
4
+.gitignore
5
+*.md
6
+dist
Dockerfile
@@ -4,9 +4,10 @@ RUN apk add --no-cache git
WORKDIR /app
7
-COPY package.json .
+COPY package*.json .
8
9
-RUN npm install
+RUN npm install && \
10
+ npm cache clear --force
11
12
COPY . .
13
0 commit comments