Fix docker image (#1101)

Fix #1099
This commit is contained in:
Chevdor
2018-11-12 15:30:30 +01:00
committed by Gav Wood
parent 7eef5cc3f8
commit 37e3fc37d7
+3 -3
View File
@@ -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