From 37e3fc37d74030dcd2afe7138d0a42a07651701e Mon Sep 17 00:00:00 2001 From: Chevdor <chevdor@users.noreply.github.com> Date: Mon, 12 Nov 2018 15:30:30 +0100 Subject: [PATCH] Fix docker image (#1101) Fix #1099 --- substrate/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/substrate/Dockerfile b/substrate/Dockerfile index 4e365fe43e6..d4a43eda8d5 100644 --- a/substrate/Dockerfile +++ b/substrate/Dockerfile @@ -1,12 +1,12 @@ -FROM frolvlad/alpine-glibc AS builder +FROM alpine:edge AS builder LABEL maintainer="chevdor@gmail.com" LABEL description="This is the build stage for Substrate. Here we create the binary." RUN apk add build-base \ cmake \ linux-headers \ - openssl-dev && \ - apk add --repository http://nl.alpinelinux.org/alpine/edge/community cargo + openssl-dev \ + cargo ARG PROFILE=release WORKDIR /substrate -- GitLab