mirror of
https://github.com/rizsotto/Bear.git
synced 2026-05-28 00:20:45 +02:00
d43bcc967a
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
476 B
Docker
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
|