mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
7 lines
122 B
Docker
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/*
|