specify exact alpine version for base images

This commit is contained in:
Damian Mee 2019-02-08 18:16:12 +07:00
parent 9cce1caa65
commit 3de63e8359
No known key found for this signature in database
GPG Key ID: 2F961EAB8789725D

View File

@ -3,7 +3,7 @@ FROM lncm/berkeleydb:db-4.8.30.NC AS berkeleydb
# Build stage for Bitcoin Core
FROM alpine AS bitcoin-core
FROM alpine:3.9 AS bitcoin-core
COPY --from=berkeleydb /opt /opt
@ -67,7 +67,7 @@ RUN strip ${BITCOIN_PREFIX}/lib/libbitcoinconsensus.so.0.0.0
# Build stage for compiled artifacts
FROM alpine AS final
FROM alpine:3.9 AS final
LABEL maintainer.0="nolim1t (@nolim1t)" \
maintainer.1="Damian Mee (@meeDamian)"