File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
FROM node:18-alpine as build
3
3
# Install OpenSSL
4
4
RUN apk update && apk upgrade
5
+ RUN apk add --no-cache openssl
5
6
RUN set -eux \
6
7
&& apk --no-cache add \
7
8
openssh-client \
8
9
aws-cli \
9
10
docker \
10
11
docker-compose \
11
- && apk add --no-cache openssl \
12
12
&& npm install -g pnpm --ignore-scripts \
13
13
&& export PATH=$PATH:/usr/lib/node_modules/pnpm/bin \
14
14
&& rm -rf /var/cache/apk/*
@@ -39,13 +39,13 @@ RUN pnpm run build agent-provisioning
39
39
FROM node:18-alpine as prod
40
40
# Install OpenSSL
41
41
RUN apk update && apk upgrade
42
+ RUN apk add --no-cache openssl
42
43
RUN set -eux \
43
44
&& apk --no-cache add \
44
45
openssh-client \
45
46
aws-cli \
46
47
docker \
47
48
docker-compose \
48
- && apk add --no-cache openssl \
49
49
&& npm install -g pnpm --ignore-scripts \
50
50
&& export PATH=$PATH:/usr/lib/node_modules/pnpm/bin \
51
51
&& rm -rf /var/cache/apk/*
You can’t perform that action at this time.
0 commit comments