Docker: Downgrade to 18.04 LTS (#22313)

Downgrade Ubuntu Docker images to 18.04 LTS since 18.10 has reached EOL.
This commit is contained in:
Arve Knudsen
2020-02-20 14:03:49 +02:00
committed by Sofia Papagiannaki
parent 4127f8374c
commit f416c57743
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -27,14 +27,14 @@ COPY packages packages
RUN yarn install --pure-lockfile
COPY Gruntfile.js tsconfig.json tslint.json .browserslistrc ./
COPY public public
COPY public public
COPY scripts scripts
COPY emails emails
ENV NODE_ENV production
RUN ./node_modules/.bin/grunt build
FROM ubuntu:18.10
FROM ubuntu:18.04
LABEL maintainer="Grafana team <hello@grafana.com>"
EXPOSE 3000
+1 -1
View File
@@ -64,7 +64,7 @@ docker_build () {
else
libc=""
dockerfile="ubuntu.Dockerfile"
base_image="${base_arch}ubuntu:18.10"
base_image="${base_arch}ubuntu:18.04"
fi
grafana_tgz="grafana-latest.linux-${arch}${libc}.tar.gz"
+1 -1
View File
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:18.10
ARG BASE_IMAGE=ubuntu:18.04
FROM ${BASE_IMAGE} AS grafana-builder
ARG GRAFANA_TGZ="grafana-latest.linux-x64.tar.gz"