feat: install protoc
This commit is contained in:
parent
59b847b740
commit
01d4c2fce3
2 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,8 @@ steps:
|
|||
backend:
|
||||
image: rust
|
||||
commands:
|
||||
- apt update
|
||||
- apt-get install -y --no-install-recommends protobuf-compiler
|
||||
- cargo build
|
||||
# - make migrate
|
||||
# - make
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
FROM rust:latest as rust
|
||||
WORKDIR /src
|
||||
RUN apt update && apt-get install -y --no-install-recommends protobuf-compiler
|
||||
COPY . .
|
||||
RUN cargo build --release
|
||||
|
||||
|
|
Loading…
Reference in a new issue