forked from Rust-related/RustPython
10 lines
127 B
Docker
10 lines
127 B
Docker
FROM rust:1.36-slim
|
|
|
|
WORKDIR /rustpython
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
|
|
CMD [ "/rustpython/target/release/rustpython" ]
|