File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM node:14-alpine
3
3
WORKDIR /app
4
4
COPY . .
5
5
6
- RUN apk add --no-cache --virtual .build-deps alpine-sdk python git openjdk8-jre
6
+ RUN apk add --no-cache --virtual .build-deps alpine-sdk python2 git openjdk8-jre
7
7
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
8
8
RUN npm config set unsafe-perm true && npm install && npm run build && npm prune --production
9
9
RUN apk del .build-deps
Original file line number Diff line number Diff line change 2
2
FROM node:14-alpine as build
3
3
WORKDIR /app
4
4
COPY . .
5
- RUN apk add --no-cache --virtual .build-deps alpine-sdk python git openjdk8-jre
5
+ RUN apk add --no-cache --virtual .build-deps alpine-sdk python2 git openjdk8-jre
6
6
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
7
7
RUN npm config set unsafe-perm true && npm install && npm run build && npm prune --production
8
8
You can’t perform that action at this time.
0 commit comments