From 98df202b91cfa555e775261ad5fdc364ac1b8a19 Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Mon, 12 Feb 2024 03:23:17 +0100 Subject: [PATCH] temporarily remove soem strategies in docker to avoid wasm memory error --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6a205313a..53a640285 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,14 @@ ENV PATH="/root/.foundry/bin:$PATH" ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable + +########################################################### +# TEMPORARILY REMOVE SOME STRATEGIES TO AVOID BUILD ERRORS +# (memory access out of bounds) +########################################################### +RUN rm -rf contracts/strategies/_poc/ + + RUN npx hardhat compile EXPOSE 8545/tcp