From d448c966d5fc9b5bb0f81b9b8a11be19eb947347 Mon Sep 17 00:00:00 2001 From: Wild Kat Date: Sun, 19 Jan 2020 10:47:02 +0100 Subject: [PATCH] bump alpine to 3.11.3 (rust 1.39) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90f7a8d..b27f9e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -- stage 1: build static routinator with musl libc for alpine -FROM alpine:3.10.3 as build +FROM alpine:3.11.3 as build RUN apk add rust cargo @@ -10,7 +10,7 @@ RUN cargo build --target x86_64-alpine-linux-musl --release --locked # -- stage 2: create alpine-based container with the static routinator # executable -FROM alpine:3.10.3 +FROM alpine:3.11.3 COPY --from=build /tmp/routinator/target/x86_64-alpine-linux-musl/release/routinator /usr/local/bin/ # Build variables for uid and guid of user to run container