From 1f2039354f22128d53ea9133209ba5ce7227b8ef Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 1 Jul 2025 20:20:57 +0700 Subject: [PATCH] bump base image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23e4b40..4eea815 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM python:3.11.8-slim-bookworm +FROM python:3.11.13-slim-bookworm WORKDIR /app COPY tubearchivist-metrics/requirements.txt . -RUN pip3 install -r requirements.txt +RUN pip install -r requirements.txt COPY . . -CMD ["python3", "-u", "tubearchivist-metrics/main.py"] +CMD ["python", "-u", "tubearchivist-metrics/main.py"]