From 2e5a064014cf5f4f5771dc92acacb740e3ed4115 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Mon, 16 Aug 2021 14:12:42 +1000 Subject: [PATCH] use buster for image instead of stable as debian released a new version --- docker/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2540986..e449aa2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ # Certbot Builder ############# -FROM debian:stable-slim as certbotbuilder +FROM debian:buster-slim as certbotbuilder SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -43,7 +43,7 @@ RUN pip install --no-cache-dir cffi certbot # Nginx Builder ############# -FROM debian:stable-slim as nginxbuilder +FROM debian:buster-slim as nginxbuilder ARG OPENRESTY_VERSION ARG LUA_VERSION @@ -73,13 +73,13 @@ RUN /tmp/build-openresty # Final Image ############# -FROM debian:stable-slim +FROM debian:buster-slim LABEL maintainer="Jamie Curnow " SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG TARGETPLATFORM -RUN echo "Base: debian:stable-slim, ${TARGETPLATFORM:-linux/amd64}" > /built-for-arch +RUN echo "Base: debian:buster-slim, ${TARGETPLATFORM:-linux/amd64}" > /built-for-arch # OpenResty uses LuaJIT which has a dependency on GCC RUN apt-get update \