From a55799d52366574e6e62da71f26cfd0585ba487a Mon Sep 17 00:00:00 2001 From: Denis Granha Date: Tue, 19 Jan 2021 10:59:40 +0100 Subject: [PATCH] Set alpine version to 3.12.3 Alpine version is changed in order to prevent Cmake errors. Reference: https://gitlab.alpinelinux.org/alpine/aports/-/issues/12321. Intends to solve https://github.com/openethereum/openethereum/issues/230 --- scripts/docker/alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/docker/alpine/Dockerfile b/scripts/docker/alpine/Dockerfile index 800a092ca..516b30370 100644 --- a/scripts/docker/alpine/Dockerfile +++ b/scripts/docker/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:edge AS builder +FROM alpine:3.12.3 AS builder # show backtraces ENV RUST_BACKTRACE 1 @@ -18,7 +18,7 @@ COPY . /openethereum RUN cargo build --release --features final --target x86_64-alpine-linux-musl --verbose RUN strip target/x86_64-alpine-linux-musl/release/openethereum -FROM alpine:edge +FROM alpine:3.12.3 # show backtraces ENV RUST_BACKTRACE 1