From ea84ab3ab509c1a4b18cea7c2b536636ab5dc738 Mon Sep 17 00:00:00 2001 From: Giorgi <740702+giorgi1324@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:46:51 +0000 Subject: [PATCH] Only request Python minor version in Dockerfiles --- src/debrid-collector/Dockerfile | 2 +- src/producer/src/Dockerfile | 2 +- src/qbit-collector/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/debrid-collector/Dockerfile b/src/debrid-collector/Dockerfile index 768a90cb..d695785a 100644 --- a/src/debrid-collector/Dockerfile +++ b/src/debrid-collector/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out . diff --git a/src/producer/src/Dockerfile b/src/producer/src/Dockerfile index 8cd57301..3b5ef0ca 100644 --- a/src/producer/src/Dockerfile +++ b/src/producer/src/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out . diff --git a/src/qbit-collector/Dockerfile b/src/qbit-collector/Dockerfile index e5d6fca7..253af062 100644 --- a/src/qbit-collector/Dockerfile +++ b/src/qbit-collector/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out .