From a932a6b1f5f0c8e2651ff997f33d5183b49c17f7 Mon Sep 17 00:00:00 2001 From: root21 Date: Mon, 4 Jul 2022 18:23:03 -0600 Subject: [PATCH] Added a newly needed dependancy. Added libss1.1 to the apt-get install command as it seems to be specifically required now. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7ea6bf..fc3124b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV SOAPBOX_FE_VERSION=v2.0.0 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get -y full-upgrade && \ - DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y postgresql postgresql-contrib imagemagick ffmpeg libimage-exiftool-perl unzip elixir ca-certificates curl supervisor openssh-client libmagic1 && \ + DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y postgresql postgresql-contrib imagemagick ffmpeg libimage-exiftool-perl unzip elixir ca-certificates curl supervisor openssh-client libmagic1 libssl1.1 && \ apt-get clean && \ sed -ie "s/data_directory =.*/data_directory = '\/data\/postgres'/" /etc/postgresql/14/main/postgresql.conf -- 2.34.5