Skip to content

Commit

Permalink
fix: install foundry into image
Browse files Browse the repository at this point in the history
  • Loading branch information
crebsy committed Aug 15, 2024
1 parent 8a330ed commit 7dddd14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bundled.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@ RUN cd /app/graphql && npm i && npm run build-linux

FROM --platform=linux/amd64 debian:bookworm-slim
RUN apt update \
&& apt install -y libssl-dev libc-dev libstdc++6 ca-certificates lsof \
&& apt install -y libssl-dev libc-dev libstdc++6 ca-certificates lsof curl git \
&& apt-get autoremove --yes \
&& apt-get clean --yes \
&& rm -rf /var/lib/apt/lists/*

RUN curl -L https://foundry.paradigm.xyz | bash
RUN /root/.foundry/bin/foundryup

COPY --from=node-builder /app/core/resources/rindexer-graphql-linux /app/resources/rindexer-graphql-linux
COPY --from=builder /app/target/release/rindexer_cli /app/rindexer

Expand Down

0 comments on commit 7dddd14

Please sign in to comment.