From dc853f2e3a8230dc9c192b55d1338273ab882cc0 Mon Sep 17 00:00:00 2001 From: Simon Egli Date: Mon, 7 May 2018 09:40:44 +0200 Subject: [PATCH] Ubuntu 17.10 is deprecated - going to 17.10 Thanks @leferrad reminding me on this issue --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef43aff..49cb459 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:17.04 +FROM ubuntu:17.10 MAINTAINER Simon Egli @@ -18,9 +18,9 @@ RUN useradd -u 1000 -g 1000 --create-home -r $USER RUN adduser $USER libvirt RUN adduser $USER kvm #Change password -RUN echo "$USER:$USER" | chpasswd +RUN echo "$USER:$USER" | chpasswd #Make sudo passwordless -RUN echo "${USER} ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-$USER +RUN echo "${USER} ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-$USER RUN usermod -aG sudo $USER RUN usermod -aG plugdev $USER