Skip to content

Commit

Permalink
fix: shell
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlcibiades committed Nov 13, 2023
1 parent 61f9d3b commit 5672f6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ RUN apt-get update -y && apt-get install -y git curl bash
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

RUN useradd -u 1000 -m foundry
RUN usermod --shell /bin/bash foundry

USER foundry

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

ENTRYPOINT ["/bin/sh", "-c"]
ENTRYPOINT ["/bin/bash", "-c"]

FROM foundry as anvil

Expand Down

0 comments on commit 5672f6a

Please sign in to comment.