Skip to content

Commit dfacf98

Browse files
authored
fix: add node version to docker (#2005)
1 parent f3862d5 commit dfacf98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# npm i -g http-server
66
# http-server -p 8000 --cors
77

8-
FROM node:alpine
8+
FROM node:12-alpine
99

1010
RUN apk update && apk add --no-cache git
1111

1212
# Install dependencies
1313
WORKDIR /build
1414
COPY package.json package-lock.json /build/
15-
RUN npm ci --no-optional --ignore-scripts --force
15+
RUN npm ci --no-optional --ignore-scripts
1616

1717
# copy only required for the build files
1818
COPY src /build/src

0 commit comments

Comments
 (0)