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
This commit is contained in:
Denis Granha 2021-01-19 10:59:40 +01:00 committed by GitHub
parent 1d07c4c06b
commit a55799d523
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