File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ updates:
14
14
prefix-development : chore
15
15
include : scope
16
16
17
- # Fetch and update latest `poetry`
18
- - package-ecosystem : poetry
17
+ # Fetch and update latest `python` packages
18
+ - package-ecosystem : pip
19
19
directory : ' /'
20
20
schedule :
21
21
interval : daily
Original file line number Diff line number Diff line change @@ -5,8 +5,10 @@ FROM python:${PYTHON_VERSION}-${VARIANT} as base
5
5
6
6
ENV PYTHONUNBUFFERED=1
7
7
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
10
12
11
13
ARG POETRY_VERSION=1.8.3
12
14
ENV POETRY_HOME=/opt/poetry\
Original file line number Diff line number Diff line change
1
+ pip == 24.2
2
+ setuptools == 75.1.0
You can’t perform that action at this time.
0 commit comments