diff --git a/tubearchivist/web/Dockerfile b/tubearchivist/web/Dockerfile index 77c01d8..06a6613 100644 --- a/tubearchivist/web/Dockerfile +++ b/tubearchivist/web/Dockerfile @@ -1,5 +1,5 @@ # builder -FROM python:3.11.8-slim-bookworm as builder +FROM python:3.11.13-slim-bookworm 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.11.8-slim-bookworm as tubearchivist-web +FROM python:3.11.13-slim-bookworm as tubearchivist-web ARG INSTALL_DEBUG ENV PYTHONUNBUFFERED 1