Skip to content
Snippets Groups Projects

Fix #200 debian package

Merged Benjamin Gallois requested to merge fix-200 into master
Compare and
5 files
+ 78
0
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 12
0
FROM rust:bullseye
WORKDIR /root
COPY . .
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y clang cmake protobuf-compiler libssl-dev && \
cargo install cargo-deb
RUN cargo build -Zgit=shallow-deps --release \
&& cargo deb --no-build -p duniter \
&& cargo deb --no-build -p distance-oracle \
Loading