more DEBIAN_FRONTEND=noninteractive

This commit is contained in:
Grant Limberg 2020-06-16 09:53:42 -07:00
parent 3669cac3c9
commit 3f21e59ab4
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

View file

@ -2,7 +2,7 @@ FROM ubuntu:focal-20200423
ARG go_pkg_url
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get upgrade -y && apt-get -y install build-essential curl cmake ca-certificates devscripts dh-systemd
RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl cmake ca-certificates devscripts dh-systemd
RUN curl -s -k $go_pkg_url -o go.tar.gz && \
tar -C /usr/local -xzf go.tar.gz && \