A Debian image with Rust installed to compile and run Rust applications
867
__This is deprecated. Use this instead. __
A Debian image with Rust installed to compile and run Rust applications
This is published on Dockerhub.
1.17.0, latest (Dockerfile)An example Dockerfile might be:
FROM lawliet89/debian-rust:1.17.0
COPY Cargo.toml Cargo.lock ./
RUN cargo fetch
COPY . ./
RUN cargo build --release
ENTRYPOINT ["cargo"]
CMD ["run", "--release"]
Content type
Image
Digest
Size
253.7 MB
Last updated
over 9 years ago
docker pull lawliet89/debian-rust