From 14531fa258ea698cefa46b0fb4ce2e1993ddca7d Mon Sep 17 00:00:00 2001 From: Austin Alvarado Date: Wed, 4 Jan 2023 00:24:40 -0700 Subject: [PATCH] docker: upgrade alpine in base dockerfile This allows us to upgrade rustc to past 1.65, which is required by sea-orm. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6eda8dc..8eac2d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build image -FROM rust:alpine3.14 AS chef +FROM rust:alpine3.16 AS chef RUN set -x \ # Add user @@ -41,7 +41,7 @@ RUN cargo build --release -p lldap -p migration-tool \ && ./app/build.sh # Final image -FROM alpine:3.14 +FROM alpine:3.16 ENV GOSU_VERSION 1.14 # Fetch gosu from git