From 3f824e1e6cbf08cb45f8a651c8d63eb0b78ffb60 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 5 Feb 2019 18:50:10 +0100 Subject: [PATCH] cd before checkout --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e8033f5..2ee3332 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ RUN set -x && \ mkdir -p /tmp/src && \ cd /tmp/src && \ git clone "$UNBOUND_GIT_URL" && \ - git checkout "$UNBOUND_GIT_REVISION" && \ cd unbound && \ + git checkout "$UNBOUND_GIT_REVISION" && \ groupadd _unbound && \ useradd -g _unbound -s /etc -d /dev/null _unbound && \ ./configure --prefix=/opt/unbound --with-pthreads \