We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c639b2 commit 5706b3aCopy full SHA for 5706b3a
.gitignore
@@ -59,3 +59,5 @@ logs/
59
60
# db file
61
*.db
62
+
63
+Cargo.lock
Dockerfile
@@ -1,8 +1,9 @@
1
FROM rust:slim-buster AS buildstage
2
WORKDIR /build
3
RUN /bin/sh -c set -eux;\
4
+ rustup component add rustfmt;\
5
apt-get update;\
- apt-get install -y --no-install-recommends git;\
6
+ apt-get install -y --no-install-recommends git protobuf-compiler;\
7
rm -rf /var/lib/apt/lists/*;
8
COPY . /build/
9
RUN cargo build --release
0 commit comments