Use forked foundry

This commit is contained in:
2024-05-06 17:17:59 +05:30
parent 71cb9cd459
commit 01dbde3239
3 changed files with 15 additions and 8 deletions
@@ -1,16 +1,17 @@
# TODO: Make work for arm64/Apple Silicon
FROM ghcr.io/foundry-rs/foundry:nightly-267e14fab654d9ce955dce64c0eb09f01c8538ee
# FROM ghcr.io/foundry-rs/foundry:nightly-267e14fab654d9ce955dce64c0eb09f01c8538ee
FROM cerc/foundry:local
RUN apk update
# Install node (use edge repo to get latest version)
RUN apk add --update --no-cache curl wget bash git busybox jq openssl \
&& apk add nodejs --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted \
&& apk add npm \
# Install node (local foundry is a debian based image)
RUN apt-get update \
&& apt-get install -y curl wget \
&& curl --silent --location https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get update \
&& apt-get install -y nodejs git busybox jq \
&& node -v
# Add corepack for yarn and pnpm
RUN npm install -g corepack && corepack enable \
RUN corepack enable \
&& yarn --version
WORKDIR /app