diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 74c36d3..7a41480 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,9 +1,11 @@ # Copyright (c) 2020 Johannes Stoelp -FROM ubuntu:20.04 +FROM ubuntu:latest RUN apt update \ && DEBIAN_FRONTEND=noninteractive \ - apt install -y \ + apt install \ + --yes \ + --no-install-recommends \ make \ gcc \ g++ \ |