From fee152fa513db3f8cd45003bd3c0fde81356d0a0 Mon Sep 17 00:00:00 2001 From: fbranciard Date: Mon, 21 Oct 2019 12:32:11 +0200 Subject: [PATCH] fix dockerfile build - upgrade image base from ubuntu 16 to 18 (#423) --- polkadot/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/docker/Dockerfile b/polkadot/docker/Dockerfile index 19c3727edc..0a0746f27b 100644 --- a/polkadot/docker/Dockerfile +++ b/polkadot/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