We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337fdf0 commit 1bdf072Copy full SHA for 1bdf072
Dockerfiles/Dockerfile.api-gateway
@@ -1,5 +1,7 @@
1
# Stage 1: Build the application
2
FROM node:18-alpine as build
3
+# Install OpenSSL
4
+RUN apk add --no-cache openssl
5
RUN npm install -g pnpm
6
# Set the working directory
7
WORKDIR /app
@@ -23,7 +25,9 @@ RUN pnpm run build api-gateway
23
25
24
26
# Stage 2: Create the final image
27
FROM node:18-alpine
-# RUN npm install -g pnpm
28
29
30
+
31
32
33
0 commit comments