Skip to content

Commit 275ea98

Browse files
Merge pull request #1097 from credebl/develop-dco-fixed
Add OpenSSL installation support for Docker image Signed-off-by: Sheetal <[email protected]>
2 parents 63756fe + 1bdf072 commit 275ea98

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfiles/Dockerfile.api-gateway

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Stage 1: Build the application
22
FROM node:18-alpine as build
3+
# Install OpenSSL
4+
RUN apk add --no-cache openssl
35
RUN npm install -g pnpm
46
# Set the working directory
57
WORKDIR /app
@@ -23,7 +25,9 @@ RUN pnpm run build api-gateway
2325

2426
# Stage 2: Create the final image
2527
FROM node:18-alpine
26-
# RUN npm install -g pnpm
28+
# Install OpenSSL
29+
RUN apk add --no-cache openssl
30+
2731
# Set the working directory
2832
WORKDIR /app
2933

0 commit comments

Comments
 (0)