Skip to content

Commit c5021d8

Browse files
add shared commands in DockerFile
1 parent 9c6a8b5 commit c5021d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ FROM node:18-bullseye-slim AS builder
33

44
WORKDIR /app
55

6+
# Copy shared directory first (needed by export-and-sign and import)
7+
COPY shared ./shared/
8+
RUN cd shared && npm ci
9+
610
# Copy export-and-sign module and build
711
COPY export-and-sign ./export-and-sign/
812
RUN cd export-and-sign && npm ci && npm run build

0 commit comments

Comments
 (0)