remove apt dependency

This commit is contained in:
Andrejus Kostarevas
2020-04-15 14:16:27 +01:00
parent 9ee05c94cf
commit 0bd67d48ae
2 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ from ubuntu:bionic as install
# Install sudo and make, git since built-in is skipped
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get -qqy update \
&& apt-get -qqy install sudo git make
&& apt-get -qqy install curl git make software-properties-common sudo
# Create user with sudo priviledge
ARG USER="test-user"