podman wip
This commit is contained in:
parent
efecc5c348
commit
18d63e14d7
10 changed files with 482 additions and 0 deletions
25
containers/foundry.Containerfile
Normal file
25
containers/foundry.Containerfile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
FROM debian:bookworm-slim
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
curl \
|
||||
jq \
|
||||
git \
|
||||
build-essential \
|
||||
pkg-config \
|
||||
libssl-dev \
|
||||
libclang-dev \
|
||||
llvm \
|
||||
unzip \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN useradd -m -u 1000 foundry
|
||||
USER foundry
|
||||
WORKDIR /home/foundry
|
||||
|
||||
RUN curl -L https://foundry.paradigm.xyz | bash \
|
||||
&& /home/foundry/.foundry/bin/foundryup
|
||||
|
||||
ENV PATH="/home/foundry/.foundry/bin:${PATH}"
|
||||
WORKDIR /workspace
|
||||
Loading…
Add table
Add a link
Reference in a new issue