Skip to content

Commit

Permalink
Update Dockerfile.issuance
Browse files Browse the repository at this point in the history
Signed-off-by: Chimi1999 <[email protected]>
  • Loading branch information
Chimi1999 authored Dec 30, 2024
1 parent 4bba842 commit 0565cb8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfiles/Dockerfile.issuance
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Stage 1: Build the application
FROM node:18-alpine as build
RUN npm install -g pnpm
RUN npm install -g pnpm --ignore-scripts \
&& apk update \
&& apk add openssl

# Set the working directory
WORKDIR /app

Expand All @@ -21,7 +24,10 @@ RUN pnpm run build issuance

# Stage 2: Create the final image
FROM node:18-alpine
RUN npm install -g pnpm
RUN npm install -g pnpm --ignore-scripts \
&& apk update \
&& apk add openssl

# Set the working directory
WORKDIR /app

Expand Down

0 comments on commit 0565cb8

Please sign in to comment.