From 459829631f99f643807fca9b8be95cb12fe8e160 Mon Sep 17 00:00:00 2001 From: nont Date: Sat, 1 Oct 2022 18:06:09 -0700 Subject: [PATCH] Upgrade to alpine 3.16 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad21329fc..0e54fcdae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Compile -FROM rust:alpine3.14 AS compiler +FROM rust:alpine3.16 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.14 +FROM alpine:3.16 ENV MEILI_HTTP_ADDR 0.0.0.0:7700 ENV MEILI_SERVER_PROVIDER docker