Skip to content

Commit 4c13db1

Browse files
committed
refactor: pin pip and setuptools versions in requirements.txt
1 parent 7bb530e commit 4c13db1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/.dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ updates:
1414
prefix-development: chore
1515
include: scope
1616

17-
# Fetch and update latest `poetry`
18-
- package-ecosystem: poetry
17+
# Fetch and update latest `python` packages
18+
- package-ecosystem: pip
1919
directory: '/'
2020
schedule:
2121
interval: daily

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ FROM python:${PYTHON_VERSION}-${VARIANT} as base
55

66
ENV PYTHONUNBUFFERED=1
77

8-
RUN python -m ensurepip --upgrade
9-
RUN pip install --upgrade setuptools
8+
COPY ./requirements.txt ./
9+
10+
RUN python -m ensurepip
11+
RUN pip install -r requirements.txt
1012

1113
ARG POETRY_VERSION=1.8.3
1214
ENV POETRY_HOME=/opt/poetry\

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pip==24.2
2+
setuptools==75.1.0

0 commit comments

Comments
 (0)