Skip to content
Permalink
main
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
FROM rust:latest as rust
WORKDIR /rustpython
COPY . .
RUN cargo build --release
FROM debian:stable-slim
COPY --from=rust /rustpython/target/release/rustpython /usr/bin
COPY --from=rust /rustpython/Lib /usr/lib/rustpython
ENV RUSTPYTHONPATH /usr/lib/rustpython
ENTRYPOINT [ "rustpython" ]