1 parent 79758fa commit 2cc7b06Copy full SHA for 2cc7b06
1 file changed
Dockerfile
@@ -2,6 +2,10 @@ FROM rust:1.88-bookworm AS builder
2
3
WORKDIR /app
4
5
+RUN apt-get update \
6
+ && apt-get install -y --no-install-recommends protobuf-compiler \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
COPY Cargo.toml Cargo.lock ./
10
# vendor/proto/ holds the in-tree snapshot of rustyred.v1 protos that
11
# crates/rustyred-server/build.rs compiles via tonic_build. Copying it
0 commit comments