Browse Source
Merge pull request #189 from lluiscampos/update-docker-base-image
Update Docker base image to Ubuntu 19.10
2.1.x
Lluis Campos
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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.2.1 |
|
|
|
|
|
|
|