Files
Bear-mirror/.devcontainer/Dockerfile
2026-03-30 09:29:33 +00:00

13 lines
476 B
Docker

FROM fedora:43
ENV RUSTUP_HOME=/root/.rustup \
CARGO_HOME=/root/.cargo \
PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN dnf -y install curl ca-certificates git gh pandoc \
&& dnf -y group install c-development \
&& dnf -y clean all \
&& rm -rf /var/cache/dnf \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile default \
&& curl -fsSL https://claude.ai/install.sh | bash