From e327e2e51731d2323a7c6d97a5e530d4bc6f909c Mon Sep 17 00:00:00 2001 From: francoisbranciard Date: Sun, 8 Sep 2019 23:27:31 +0200 Subject: [PATCH] fix dockerfile build - upgrade image base from ubuntu 16 to 18 --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 19c3727edcf1..0a0746f27be6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM phusion/baseimage:0.10.2 as builder +FROM phusion/baseimage:0.11 as builder LABEL maintainer "chevdor@gmail.com" LABEL description="This is the build stage for Polkadot. Here we create the binary." @@ -17,7 +17,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \ # ===== SECOND STAGE ====== -FROM phusion/baseimage:0.10.2 +FROM phusion/baseimage:0.11 LABEL maintainer "chevdor@gmail.com" LABEL description="This is the 2nd stage: a very small image where we copy the Polkadot binary." ARG PROFILE=release