From cf3bd3eebe6ce397b8bb1f5d697b8470adf92e40 Mon Sep 17 00:00:00 2001 From: Lluis Campos Date: Thu, 16 Apr 2020 13:20:52 +0200 Subject: [PATCH] Update Docker base image to Ubuntu 19.10 As Ubuntu 19.04 is End of Life by now. Changelog: None Signed-off-by: Lluis Campos (cherry picked from commit e170109121eb34dc649f1f5d5eb354b80c8d6056) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6a045c2..7a273aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build pxz in separate image to avoid big image size -FROM ubuntu:19.04 AS build +FROM ubuntu:19.10 AS build RUN apt-get update && apt-get install -y \ build-essential \ git \ @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \ RUN git clone https://github.com/jnovy/pxz.git /root/pxz RUN cd /root/pxz && make -FROM ubuntu:19.04 +FROM ubuntu:19.10 ARG MENDER_ARTIFACT_VERSION=3.3.0