cargo-deb-crossbuild/Dockerfile.i686

12 lines
247 B
Docker

FROM docker.io/rust:bullseye
RUN apt-get update && apt-get upgrade -y
# Uncomment if you need to add more build dependencies to the image:
# RUN apt-get install -y <build-depend..>
RUN cargo install cargo-deb
WORKDIR /app
CMD ["cargo", "deb"]