Skip to content

Commit

Permalink
Only request Python minor version in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgi1324 committed Nov 15, 2024
1 parent b0c2be2 commit ea84ab3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/debrid-collector/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down
2 changes: 1 addition & 1 deletion src/producer/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down
2 changes: 1 addition & 1 deletion src/qbit-collector/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down

0 comments on commit ea84ab3

Please sign in to comment.