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:
|
backend:
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
|
- apt update
|
||||||
|
- apt-get install -y --no-install-recommends protobuf-compiler
|
||||||
- cargo build
|
- cargo build
|
||||||
# - make migrate
|
# - make migrate
|
||||||
# - make
|
# - make
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
FROM rust:latest as rust
|
FROM rust:latest as rust
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
|
RUN apt update && apt-get install -y --no-install-recommends protobuf-compiler
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN cargo build --release
|
RUN cargo build --release
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue