From 98f5d157578cd834568949ac4bc49fb11e4671d5 Mon Sep 17 00:00:00 2001 From: HardlyDifficult Date: Wed, 18 Jun 2025 08:30:23 -0400 Subject: [PATCH] Add build step --- Dockerfile.dev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile.dev b/Dockerfile.dev index c2d6384f..4b96440d 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -11,5 +11,8 @@ RUN yarn install # Then copy the rest of the files COPY . . +# Compile the fairmint-canton/scripts submodule +RUN cd src/chain-operations/canton/lib/fairmint-canton/scripts && yarn install && yarn build + EXPOSE 8080 CMD ["yarn", "dev"]