-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.dev
More file actions
31 lines (25 loc) · 869 Bytes
/
Dockerfile.dev
File metadata and controls
31 lines (25 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
ca-certificates \
curl \
make \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Install Rust 1.85.0 via rustup
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH \
RUST_VERSION=1.94.0
RUN curl -fsSL https://sh.rustup.rs | \
sh -s -- -y --no-modify-path --default-toolchain ${RUST_VERSION} --profile minimal \
&& rustup --version \
&& rustc --version \
&& cargo --version
# Install Claude Code via official standalone installer
RUN curl -fsSL https://claude.ai/install.sh | bash \
&& cp /root/.local/bin/claude /usr/local/bin/claude
WORKDIR /workspace
# Install alog
ENV ALOG_INSTALL_ACCEPT_DEFAULTS=1
RUN curl -s https://prettysmart.dev/install/alog.sh | sh