From bdeca9818aafd0b7bc8533ea11dbe3adf6be4ab6 Mon Sep 17 00:00:00 2001 From: KOUNOIKE Yuusuke <kounoike.yuusuke@gmail.com> Date: Tue, 4 Jul 2023 03:18:27 +0900 Subject: [PATCH] =?UTF-8?q?nginx=E3=82=A4=E3=83=A1=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=82=92bullseye=E3=81=AB=E5=9B=BA=E5=AE=9A=EF=BC=88bookworm?= =?UTF-8?q?=E3=81=AB=E3=81=AA=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=81=9F=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose/web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose/web/Dockerfile b/docker-compose/web/Dockerfile index e36b268..9c67b79 100644 --- a/docker-compose/web/Dockerfile +++ b/docker-compose/web/Dockerfile @@ -4,7 +4,7 @@ RUN curl -fsSL https://github.com/mcuadros/ofelia/archive/refs/tags/v0.3.7.tar.g | tar xzvpf - --strip-components=1 RUN go build -o /usr/local/bin/ofelia -FROM nginx:latest AS runner +FROM nginx:stable-bullseye AS runner ENV DEBIAN_FRONTEND=noninteractive @@ -19,6 +19,7 @@ RUN set -ex && \ openssl \ python3 \ python3-pip \ + python-is-python3 \ && \ pip3 install supervisor && \ curl -fsSL https://tailscale.com/install.sh | sh && \