Skip to content

Commit 322795e

Browse files
committed
Added specific setuptools dependency
1 parent 10ee897 commit 322795e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ FROM python-base AS build
1212
WORKDIR /app
1313

1414
# install python deps
15+
RUN pip install --upgrade pip
16+
1517
COPY requirements.txt requirements.txt
16-
RUN pip install --upgrade pip && pip install setuptools -U && pip install --user -r requirements.txt
18+
RUN pip install --user -r requirements.txt
1719

1820
COPY horizon setup.py MANIFEST.in ./
1921
RUN python setup.py install --user

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ httpx>=0.27.0,<1
1414
protobuf>=3.20.2 # not directly required, pinned by Snyk to avoid a vulnerability
1515
opal-common==0.7.6
1616
opal-client==0.7.6
17+
setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerability

0 commit comments

Comments
 (0)