feat: install protoc
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/pr/woodpecker Pipeline was successful Details
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful Details

This commit is contained in:
Aravinth Manivannan 2023-12-30 14:18:15 +05:30
parent 59b847b740
commit 01d4c2fce3
Signed by: realaravinth
GPG Key ID: F8F50389936984FF
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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