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 <denis@gnosis.pm>
This commit is contained in:
rakita 2021-01-19 12:36:10 +01:00 committed by GitHub
parent 05ac033907
commit 15b5581894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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