Skip to content
Snippets Groups Projects

Fix #200 debian package

Merged Benjamin Gallois requested to merge fix-200 into master
Compare and
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
+ 12
0
 
FROM rust:slim-buster
 
 
WORKDIR /root
 
COPY . .
 
 
RUN apt-get update && apt-get upgrade -y && \
 
apt-get install -y clang cmake protobuf-compiler && \
 
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