Skip to content

Commit 073cdb8

Browse files
authored
Merge pull request #1102 from credebl/refactor/Dockerfile-changes
Add OpenSSL installation support for Docker image
2 parents 28f2205 + f86218f commit 073cdb8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Dockerfiles/Dockerfile.agent-provisioning

Lines changed: 2 additions & 0 deletions
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 apk add --no-cache openssl
56
RUN set -eux \
67
&& apk --no-cache add \
@@ -37,6 +38,7 @@ RUN pnpm run build agent-provisioning
3738
# Stage 2: Create the final image
3839
FROM node:18-alpine as prod
3940
# Install OpenSSL
41+
RUN apk update && apk upgrade
4042
RUN apk add --no-cache openssl
4143
RUN set -eux \
4244
&& apk --no-cache add \

0 commit comments

Comments
 (0)