mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
10 lines
127 B
Docker
10 lines
127 B
Docker
FROM rust:1.31-slim
|
|
|
|
WORKDIR /rustpython
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
|
|
CMD [ "/rustpython/target/release/rustpython" ]
|