CircleCI: Upgrade Ubuntu base image to 19.10 also for enterprise (#22315)

This commit is contained in:
Arve Knudsen 2020-02-19 17:06:02 +01:00 committed by GitHub
parent d5a2bc1a54
commit 4c282c538a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -515,11 +515,11 @@ jobs:
pushd packaging/docker
docker build -t "grafana/grafana-enterprise:master-ubuntu" --no-cache=true -f ubuntu.Dockerfile .
docker build -t "grafana/grafana-enterprise-arm32v7-linux:master-ubuntu" \
--build-arg BASE_IMAGE=arm32v7/ubuntu:18.10 \
--build-arg BASE_IMAGE=arm32v7/ubuntu:19.10 \
--build-arg GRAFANA_TGZ=grafana-latest.linux-armv7.tar.gz \
--no-cache=true -f ubuntu.Dockerfile .
docker build -t "grafana/grafana-enterprise-arm64v8-linux:master-ubuntu" \
--build-arg BASE_IMAGE=arm64v8/ubuntu:18.10 \
--build-arg BASE_IMAGE=arm64v8/ubuntu:19.10 \
--build-arg GRAFANA_TGZ=grafana-latest.linux-arm64.tar.gz \
--no-cache=true -f ubuntu.Dockerfile .
popd