bump python base image

This commit is contained in:
simon 2023-03-06 16:15:54 +07:00
parent c6cb4aa33a
commit 73631d66e6
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 2 additions and 2 deletions

View File

@ -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