fix dockerfile build - upgrade image base from ubuntu 16 to 18 (#423)

This commit is contained in:
fbranciard
2019-10-21 12:32:11 +02:00
committed by Bastian Köcher
parent 7732e6cc60
commit fee152fa51
+2 -2
View File
@@ -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