Docker: Upgrade to Ubuntu 20.04 in Dockerfiles (#23852)

* Chore: Upgrade to Ubuntu 20.04
Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
This commit is contained in:
Arve Knudsen
2020-04-24 14:03:18 +02:00
committed by GitHub
parent c081513a96
commit 51c19da98d
6 changed files with 7 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
FROM ubuntu:18.04 as toolchain
FROM ubuntu:20.04 as toolchain
ENV OSX_SDK_URL=https://s3.dockerproject.org/darwin/v2 \
OSX_SDK=MacOSX10.10.sdk \
@@ -70,7 +70,7 @@ RUN cd /tmp && \
rm -rf /tmp/crosstool-ng-${CTNG}
# base image to crossbuild grafana
FROM ubuntu:18.04
FROM ubuntu:20.04
ENV GOVERSION=1.14.1 \
PATH=/usr/local/go/bin:$PATH \