Skip to content

Commit 67b556c

Browse files
damarteflovilmart
authored andcommitted
Fix Docker build (#854)
1 parent 99d6b58 commit 67b556c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM node:argon-slim
1+
FROM node:8-slim
22
ENV NPM_CONFIG_LOGLEVEL error
33
WORKDIR /src
44
ADD . /src
55
RUN cd /src \
66
&& npm install \
77
&& npm run build \
8-
&& npm cache clear \
8+
&& npm cache clear --force \
99
&& rm -rf ~/.npm \
1010
&& rm -rf /var/lib/apt/lists/*
1111
ENTRYPOINT ["npm", "run", "dashboard"]

0 commit comments

Comments
 (0)