File tree 4 files changed +10
-10
lines changed
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
4
4
5
5
RUN apk -U upgrade
6
6
7
- # install cf-runtime required binaries
8
- RUN apk add --no-cache bash git openssh-client
9
-
10
7
COPY package.json yarn.lock ./
11
8
12
9
# 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 && \
14
15
yarn install --frozen-lockfile --production && \
15
16
yarn cache clean && \
16
17
apk del deps && \
Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ COPY package.json ./
58
58
COPY yarn.lock ./
59
59
60
60
# 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++ && \
62
65
yarn install --frozen-lockfile --production && \
63
66
yarn cache clean && \
64
67
apk del deps && \
Original file line number Diff line number Diff line change 18
18
"request" : " ^2.88.2" ,
19
19
"request-promise" : " ^4.2.6"
20
20
},
21
- "resolutions" : {
22
- "lodash" : " ^4.17.21" ,
23
- "graceful-fs" : " ^4.2.4"
24
- },
25
21
"devDependencies" : {
26
22
"chai" : " ^4.3.6" ,
27
23
"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