From 2745c6eb573547eec0c7a3ed3072b0dd84c56a30 Mon Sep 17 00:00:00 2001 From: simonfelding <45149055+simonfelding@users.noreply.github.com> Date: Mon, 17 Feb 2025 10:15:22 +0100 Subject: [PATCH] deb build: make sure it has the necessary tools (#116) --- deb/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/deb/Dockerfile b/deb/Dockerfile index ddebcac..8ef00b6 100644 --- a/deb/Dockerfile +++ b/deb/Dockerfile @@ -9,6 +9,13 @@ WORKDIR /protonmail # Copy bash scripts COPY gpgparams install.sh entrypoint.sh VERSION /protonmail/ +RUN apt-get update \ + && apt-get install -y --no-install-recommends socat pass procps libsecret-1-0 ca-certificates \ + && rm -rf /var/lib/apt/lists/* + +# Copy bash scripts +COPY gpgparams entrypoint.sh /protonmail/ + # Install dependencies and protonmail bridge RUN bash install.sh