From afe520a67eb326f87568e4562439d186979f22f0 Mon Sep 17 00:00:00 2001 From: Ivan Ionut Date: Mon, 5 Dec 2022 17:49:15 +0100 Subject: [PATCH] Upgrade alpine 3.16 to 3.17 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e54fcdae..aaf64cd85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Compile -FROM rust:alpine3.16 AS compiler +FROM rust:alpine3.17 AS compiler RUN apk add -q --update-cache --no-cache build-base openssl-dev @@ -19,7 +19,7 @@ RUN set -eux; \ cargo build --release # Run -FROM alpine:3.16 +FROM alpine:3.17 ENV MEILI_HTTP_ADDR 0.0.0.0:7700 ENV MEILI_SERVER_PROVIDER docker