From 4cb96a75d126f81c33962c6ff5e078904bbd97f2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 23 Jan 2023 17:43:27 +0100 Subject: [PATCH] Update Dockerfile --- immich/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/immich/Dockerfile b/immich/Dockerfile index e2b1c1ee7..f89d3d041 100644 --- a/immich/Dockerfile +++ b/immich/Dockerfile @@ -36,10 +36,10 @@ ENV DEBIAN_FRONTEND=noninteractive # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"] -# hadolint ignore=SC2013 +# hadolint ignore=SC2013,DL3015 RUN \ apt-get update && \ - apt-get install -y gnupg gnupg2 gnupg1 wget lsb-core --no-install-recommends && \ + apt-get install -y gnupg gnupg2 gnupg1 wget lsb-core && \ sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \ curl -s -S https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ printf '#!/bin/sh\nexit 0' > /usr/sbin/policy-rc.d && \