From 15b5581894d6f9e1a51ed34ffc5497301a36dacb Mon Sep 17 00:00:00 2001 From: rakita Date: Tue, 19 Jan 2021 12:36:10 +0100 Subject: [PATCH] Set alpine version to 3.12.3 (#231) 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 Co-authored-by: Denis Granha --- 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