Skip to content

Commit 0a1121f

Browse files
committed
Add OpenSSL installation support for Docker image
Signed-off-by: [email protected] <[email protected]>
1 parent b8d0edd commit 0a1121f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfiles/Dockerfile.agent-provisioning

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Stage 1: Build the application
22
FROM node:18-alpine as build
33
# Install OpenSSL
4+
RUN apk update && apk upgrade
45
RUN set -eux \
56
&& apk --no-cache add \
67
openssh-client \
@@ -36,7 +37,8 @@ RUN pnpm run build agent-provisioning
3637

3738
# Stage 2: Create the final image
3839
FROM node:18-alpine as prod
39-
# Install OpenSSL
40+
# Install OpenSSL
41+
RUN apk update && apk upgrade
4042
RUN set -eux \
4143
&& apk --no-cache add \
4244
openssh-client \

0 commit comments

Comments
 (0)