Fix dockerfile

This commit is contained in:
Sander Declerck 2026-04-21 15:47:22 +02:00
parent 78718744c5
commit 28ee123412
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
FROM node:24-bookworm as builder
FROM node:24-bookworm AS builder
ENV CI=true
@ -14,7 +14,7 @@ COPY ./npm-shrinkwrap.json ./
RUN npm ci
# Copy the rest of the application
COPY packages/safe-chain ./
COPY packages/safe-chain ./packages/safe-chain
# Build the application
RUN npm --no-git-tag-version version 1.0.0 --allow-same-version --workspace=packages/safe-chain