From dd8597307c32bc788670e8007e7054dd56169e1c Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 22 Oct 2022 23:30:44 +0700 Subject: [PATCH] fix wrong python version in final image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 929967e..351c052 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY ./tubearchivist/requirements.txt /requirements.txt RUN pip install --user -r requirements.txt # build final image -FROM python:3.10.7-slim-bullseye as tubearchivist +FROM python:3.10.8-slim-bullseye as tubearchivist ARG TARGETPLATFORM ARG INSTALL_DEBUG