From 577c6e8c1995774f033952208e250f2702a86cc7 Mon Sep 17 00:00:00 2001 From: Dan Sexton Date: Fri, 1 Feb 2019 10:50:03 -0500 Subject: [PATCH] Added workaround for logging to stdout --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a727571..fad69a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,9 @@ RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y squid=${SQUID_VERSION}* \ && rm -rf /var/lib/apt/lists/* +# Workaround for https://github.com/moby/moby/issues/31243 +RUN usermod -a -G tty proxy + COPY entrypoint.sh /sbin/entrypoint.sh RUN chmod 755 /sbin/entrypoint.sh