From 73631d66e614dab491add4a77644dd24168d65a3 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 6 Mar 2023 16:15:54 +0700 Subject: [PATCH] bump python base image --- tubearchivist/web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tubearchivist/web/Dockerfile b/tubearchivist/web/Dockerfile index 2240566..32c2d0b 100644 --- a/tubearchivist/web/Dockerfile +++ b/tubearchivist/web/Dockerfile @@ -1,5 +1,5 @@ # builder -FROM python:3.10.8-slim-bullseye as builder +FROM python:3.10.9-slim-bullseye as builder RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential @@ -8,7 +8,7 @@ COPY requirements.txt /requirements.txt RUN pip install --user -r requirements.txt # final -FROM python:3.10.8-slim-bullseye as tubearchivist-web +FROM python:3.10.9-slim-bullseye as tubearchivist-web ARG INSTALL_DEBUG ENV PYTHONUNBUFFERED 1