1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

bump rust and alpine to latest stable in dockerfile

This commit is contained in:
Wild Kat
2019-07-26 06:30:12 +02:00
parent 1e3d4333b3
commit 979fe27576

View File

@ -1,5 +1,5 @@
# -- stage 1: build static routinator with musl libc for alpine
FROM rust:1.35.0-stretch as build
FROM rust:1.36.0-stretch as build
RUN apt-get -yq update && \
apt-get -yq install musl-tools
@ -13,7 +13,7 @@ RUN cargo build --target=x86_64-unknown-linux-musl --release --locked
# -- stage 2: create alpine-based container with the static routinator
# executable
FROM alpine:3.10.0
FROM alpine:3.10.1
COPY --from=build /tmp/routinator/target/x86_64-unknown-linux-musl/release/routinator /usr/local/bin/
# Install rsync as routinator depends on it