podman wip

This commit is contained in:
johba 2025-09-24 10:57:22 +02:00 committed by root
parent efecc5c348
commit 18d63e14d7
10 changed files with 482 additions and 0 deletions

View 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