From 71cd800ae2f7a9651135ee0c03578929f1a92571 Mon Sep 17 00:00:00 2001 From: Patrick Casey Date: Tue, 10 Sep 2024 15:25:46 -0400 Subject: [PATCH] fix: fix issue building Docker image --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 9fed4c14..10fe3407 100644 --- a/Containerfile +++ b/Containerfile @@ -14,7 +14,7 @@ COPY Cargo.toml Cargo.lock ./ RUN set -eux && \ apt-get update && \ - apt-get install -y build-essential perl-base && \ + apt-get install -y build-essential perl-base protobuf-compiler && \ cargo build --release #============================================================================ @@ -29,7 +29,7 @@ COPY config/ config/ RUN set -eux && \ apt-get update && \ - apt-get install -y npm git protobuf-compiler && \ + apt-get install -y npm git && \ apt-get clean && \ npm install -g module-deps@6.2 --no-audit --no-fund && \ adduser --disabled-password hc_user && \