We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ee897 commit 322795eCopy full SHA for 322795e
Dockerfile
@@ -12,8 +12,10 @@ FROM python-base AS build
12
WORKDIR /app
13
14
# install python deps
15
+RUN pip install --upgrade pip
16
+
17
COPY requirements.txt requirements.txt
-RUN pip install --upgrade pip && pip install setuptools -U && pip install --user -r requirements.txt
18
+RUN pip install --user -r requirements.txt
19
20
COPY horizon setup.py MANIFEST.in ./
21
RUN python setup.py install --user
requirements.txt
@@ -14,3 +14,4 @@ httpx>=0.27.0,<1
protobuf>=3.20.2 # not directly required, pinned by Snyk to avoid a vulnerability
opal-common==0.7.6
opal-client==0.7.6
+setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerability
0 commit comments