Skip to content

Commit

Permalink
🐛 Correct useradd (closes MatthewVance#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVance committed Aug 20, 2022
1 parent d7055cc commit 96e23e5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions 1.14.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev libnghttp2-dev make
rm -f unbound.tar.gz && \
cd unbound-1.14.0 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
./configure \
--disable-dependency-tracking \
--prefix=/opt/unbound \
Expand Down Expand Up @@ -111,7 +111,7 @@ RUN set -x && \
libnghttp2-14 \
libexpat1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
apt-get purge -y --auto-remove \
$build_deps && \
rm -rf \
Expand Down
4 changes: 2 additions & 2 deletions 1.15.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev libnghttp2-dev make
rm -f unbound.tar.gz && \
cd unbound-1.15.0 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
./configure \
--disable-dependency-tracking \
--prefix=/opt/unbound \
Expand Down Expand Up @@ -116,7 +116,7 @@ RUN set -x && \
libexpat1 \
libprotobuf-c1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
apt-get purge -y --auto-remove \
$build_deps && \
rm -rf \
Expand Down
4 changes: 2 additions & 2 deletions 1.16.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev libnghttp2-dev make
rm -f unbound.tar.gz && \
cd unbound-1.16.0 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
./configure \
--disable-dependency-tracking \
--prefix=/opt/unbound \
Expand Down Expand Up @@ -116,7 +116,7 @@ RUN set -x && \
libexpat1 \
libprotobuf-c1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
apt-get purge -y --auto-remove \
$build_deps && \
rm -rf \
Expand Down
4 changes: 2 additions & 2 deletions 1.16.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev libnghttp2-dev make
rm -f unbound.tar.gz && \
cd unbound-1.16.1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
./configure \
--disable-dependency-tracking \
--prefix=/opt/unbound \
Expand Down Expand Up @@ -116,7 +116,7 @@ RUN set -x && \
libexpat1 \
libprotobuf-c1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
apt-get purge -y --auto-remove \
$build_deps && \
rm -rf \
Expand Down
2 changes: 1 addition & 1 deletion 1.16.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ RUN set -x && \
libexpat1 \
libprotobuf-c1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
useradd -g _unbound -s /dev/null -d /etc _unbound && \
apt-get purge -y --auto-remove \
$build_deps && \
rm -rf \
Expand Down

0 comments on commit 96e23e5

Please sign in to comment.