Skip to content

Commit

Permalink
Docker: Upgrade Ubuntu to 19.10 (grafana#22306)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknuds1 authored Feb 19, 2020
1 parent 7bf3f0b commit b148b30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ COPY packages packages
RUN yarn install --pure-lockfile

COPY Gruntfile.js tsconfig.json .eslintrc .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:19.10

LABEL maintainer="Grafana team <[email protected]>"
EXPOSE 3000
Expand Down
2 changes: 1 addition & 1 deletion packaging/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ docker_build () {
else
libc=""
dockerfile="ubuntu.Dockerfile"
base_image="${base_arch}ubuntu:18.10"
base_image="${base_arch}ubuntu:19.10"
fi

grafana_tgz="grafana-latest.linux-${arch}${libc}.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion packaging/docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:18.10
ARG BASE_IMAGE=ubuntu:19.10
FROM ${BASE_IMAGE} AS grafana-builder

ARG GRAFANA_TGZ="grafana-latest.linux-x64.tar.gz"
Expand Down

0 comments on commit b148b30

Please sign in to comment.