From c11a884f921853fa93461842cb75a4fe0f7ce0ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Mon, 11 Jun 2018 16:13:33 +0200 Subject: [PATCH] replaced --force-yes with --allow --- containers/zammad/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/zammad/Dockerfile b/containers/zammad/Dockerfile index ac015e8..2017f88 100644 --- a/containers/zammad/Dockerfile +++ b/containers/zammad/Dockerfile @@ -28,7 +28,7 @@ LABEL org.label-schema.build-date="$BUILD_DATE" \ # install dependencies & gosu RUN BUILD_DEPENDENCIES="build-essential ca-certificates curl git libffi-dev libpq5 libpq-dev nginx rsync" \ set -ex \ - && apt-get update && apt-get install -y --force-yes --no-install-recommends ${BUILD_DEPENDENCIES} && rm -rf /var/lib/apt/lists/* \ + && apt-get update && apt-get install -y --allow --no-install-recommends ${BUILD_DEPENDENCIES} && rm -rf /var/lib/apt/lists/* \ && curl -s -J -L -o /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-$(dpkg --print-architecture)" \ && curl -s -J -L -o /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-$(dpkg --print-architecture).asc" \ && export GNUPGHOME="$(mktemp -d)" \