From c8f710a70dc7636ab87534b135f88644d7156925 Mon Sep 17 00:00:00 2001 From: Michael Rodler Date: Mon, 6 Jun 2016 16:29:46 +0200 Subject: [PATCH] switched to useradd instead of adduser in Dockerfile (adduser is interactive) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 987e643..a93248d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y build-essential libtool g++ gcc \ texinfo curl wget automake autoconf python python-dev git subversion \ unzip virtualenvwrapper -RUN adduser ctf +RUN useradd -m ctf COPY .git /home/ctf/tools/.git RUN chown -R ctf.ctf /home/ctf/tools