From f53f2922b251f68814b81014886e5ede0d811b42 Mon Sep 17 00:00:00 2001 From: Brice Dobry Date: Thu, 16 Mar 2023 14:49:29 -0400 Subject: [PATCH] ci: don't package the contracts in the docker image Clarinet now retrieves the contracts from the network, so we do not need the hack of putting them in the image. --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f75a48306..52a483982 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,5 @@ RUN cp target/release/subnet-node /out FROM debian:bullseye-backports COPY --from=build /out/ /bin/ -# Add the core contracts to the image, so that clarinet can retrieve them. -COPY --from=build /src/core-contracts/contracts/subnet.clar /contracts/subnet.clar -COPY --from=build /src/core-contracts/contracts/helper/subnet-traits.clar /contracts/subnet-traits.clar CMD ["subnet-node", "start"]