From 3bea42079edd5cc2cb41e0131ae6380014d7122d Mon Sep 17 00:00:00 2001 From: Gaius Date: Tue, 26 Dec 2023 23:03:59 +0800 Subject: [PATCH] chore: add protobuf-dev to Dockerfile (#170) Signed-off-by: Gaius --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c4eebf8..80c6082c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BASE_IMAGE=alpine:3.17 FROM rust:alpine as builder -RUN apk add --no-cache build-base pkgconfig openssl-dev protoc +RUN apk add --no-cache build-base pkgconfig openssl-dev protoc protobuf-dev WORKDIR /app/client COPY Cargo.toml ./