Files
RustPython/.devcontainer/Dockerfile
2026-01-17 21:53:13 +09:00

7 lines
122 B
Docker

FROM rust:bullseye
# Install clang
RUN apt-get update \
&& apt-get install -y clang \
&& rm -rf /var/lib/apt/lists/*