From 72e68a6bd6fe9e74a7b3fb1bc2b680bb5f4f655f Mon Sep 17 00:00:00 2001 From: Eric Lippmann <eric.lippmann@icinga.com> Date: Thu, 2 Jun 2022 13:11:02 +0200 Subject: [PATCH] Fix permissions of /usr/local/bin See https://git.icinga.com/build-docker/scripts/-/issues/1 --- bullseye/x86/Dockerfile | 3 +-- bullseye/x86_64/Dockerfile | 3 +-- buster/x86/Dockerfile | 3 +-- buster/x86_64/Dockerfile | 3 +-- stretch/x86/Dockerfile | 3 +-- stretch/x86_64/Dockerfile | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) diff --git a/bullseye/x86/Dockerfile b/bullseye/x86/Dockerfile index a66b671..97623fa 100644 --- a/bullseye/x86/Dockerfile +++ b/bullseye/x86/Dockerfile @@ -19,8 +19,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go 386 diff --git a/bullseye/x86_64/Dockerfile b/bullseye/x86_64/Dockerfile index 63517a7..bb776ef 100644 --- a/bullseye/x86_64/Dockerfile +++ b/bullseye/x86_64/Dockerfile @@ -19,8 +19,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go diff --git a/buster/x86/Dockerfile b/buster/x86/Dockerfile index 5a00135..f9c3f3f 100644 --- a/buster/x86/Dockerfile +++ b/buster/x86/Dockerfile @@ -19,8 +19,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go 386 diff --git a/buster/x86_64/Dockerfile b/buster/x86_64/Dockerfile index ac60453..72bdf43 100644 --- a/buster/x86_64/Dockerfile +++ b/buster/x86_64/Dockerfile @@ -19,8 +19,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go diff --git a/stretch/x86/Dockerfile b/stretch/x86/Dockerfile index df64f89..17ce591 100644 --- a/stretch/x86/Dockerfile +++ b/stretch/x86/Dockerfile @@ -18,8 +18,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go 386 diff --git a/stretch/x86_64/Dockerfile b/stretch/x86_64/Dockerfile index de04631..dfec8f7 100644 --- a/stretch/x86_64/Dockerfile +++ b/stretch/x86_64/Dockerfile @@ -18,8 +18,7 @@ RUN curl https://packages.icinga.com/icinga.key | apt-key add - \ RUN groupadd -g 1000 build \ && useradd -u 1000 -g 1000 -m build \ && echo 'Defaults:build !requiretty' | tee -a /etc/sudoers \ - && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers \ - && chown build.build /usr/local/bin + && echo 'build ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers RUN git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin RUN icinga-provide-go -- GitLab