From 5e808be7289ef4a6dc37355506c9029e95b50f4d Mon Sep 17 00:00:00 2001 From: Caio Pizzol Date: Mon, 13 Jul 2026 13:55:26 +0000 Subject: [PATCH] fix(build): copy contract source into production image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fcc0350..1fd9568 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,6 +47,7 @@ RUN bun install --frozen-lockfile --ignore-scripts --production # Copy built client and server source COPY --from=build /app/apps/web/dist apps/web/dist +COPY packages/contract/ packages/contract/ COPY apps/api/ apps/api/ RUN mkdir -p data