File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,14 @@ WORKDIR /root/cf-runtime
44
55RUN apk -U upgrade
66
7- # install cf-runtime required binaries
8- RUN apk add --no-cache bash git openssh-client
9-
107COPY package.json yarn.lock ./
118
129# install cf-runtime required binaries
13- RUN apk add --no-cache --virtual deps python3 make g++ && \
10+ RUN apk add --no-cache --virtual deps \
11+ g++ \
12+ git \
13+ make \
14+ python3 && \
1415 yarn install --frozen-lockfile --production && \
1516 yarn cache clean && \
1617 apk del deps && \
Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ COPY package.json ./
5858COPY yarn.lock ./
5959
6060# install cf-runtime required binaries
61- RUN apk add --no-cache --virtual deps python make g++ && \
61+ RUN apk add --no-cache --virtual deps \
62+ python \
63+ make \
64+ g++ && \
6265 yarn install --frozen-lockfile --production && \
6366 yarn cache clean && \
6467 apk del deps && \
Original file line number Diff line number Diff line change 1818 "request" : " ^2.88.2" ,
1919 "request-promise" : " ^4.2.6"
2020 },
21- "resolutions" : {
22- "lodash" : " ^4.17.21" ,
23- "graceful-fs" : " ^4.2.4"
24- },
2521 "devDependencies" : {
2622 "chai" : " ^4.3.6" ,
2723 "eslint" : " ^7.32.0" ,
Original file line number Diff line number Diff line change 1- version : 1.8.0
1+ version : 1.8.1
You can’t perform that action at this time.
0 commit comments