From fea15fae3acbc532d52539cede75ddf997c15b41 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Wed, 13 Jan 2021 13:30:47 +0100 Subject: [PATCH] docker/l3d#77 Fix sudo issue with workaround --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 62793c1..4772858 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,13 +56,16 @@ RUN echo 'hosts: files dns' > /etc/nsswitch.conf && \ else \ apk add --no-cache mdocml-apropos ; \ fi && \ - + \ if [ "${PHP_MAJOR_VERSION}" = "7.2" ]; then \ echo "No libiconv to install" ; \ else \ apk add --no-cache gnu-libiconv ; \ fi && \ \ + echo "Fix sudo bug, for details see https://github.com/sudo-project/sudo/issues/42" && \ + echo "Set disable_coredump false" >> /etc/sudo.conf && \ + \ wget -q https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -O /etc/apk/keys/sgerrand.rsa.pub && \ wget -q https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${glibc_version}/glibc-${glibc_version}.apk && \ apk add --no-cache glibc-${glibc_version}.apk && \ -- GitLab