We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1274a5d commit 4a44d1aCopy full SHA for 4a44d1a
.github/workflows/docker-img.yml
@@ -134,7 +134,9 @@ jobs:
134
135
# rc
136
rm-cache-rc-at-helm:
137
- needs: setup-envvar
+ needs:
138
+ - setup-envvar
139
+ - build-docker-img
140
if: ${{ github.event_name == 'release' && contains(github.ref, 'rc') }}
141
runs-on: ubuntu-latest
142
steps:
worker-v4.dockerfile
@@ -1,6 +1,5 @@
1
FROM python:3.10
2
-RUN python -m pip install -U pip
3
-RUN python -m pip install wheel
+RUN python -m pip install -U pip setuptools wheel
4
COPY ./requirements /requirements
5
RUN python -m pip install -r /requirements/v4-worker.txt
6
0 commit comments