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 2a568d8 commit aeb7bcaCopy full SHA for aeb7bca
.github/workflows/ci.yml
@@ -86,7 +86,11 @@ jobs:
86
./kind create cluster --config=tests/cluster-config.yaml
87
./kind export kubeconfig
88
89
- docker build -f tests/Dockerfile -t scalableminds/cluster-tools:latest .
+ docker build \
90
+ --build-arg PYTHON_VERSION=${{ matrix.python-version }} \
91
+ -f tests/Dockerfile \
92
+ -t scalableminds/cluster-tools:latest \
93
+ .
94
./kind load docker-image scalableminds/cluster-tools:latest
95
96
- name: Install dependencies (without docker)
cluster_tools/tests/Dockerfile
@@ -1,4 +1,6 @@
1
-FROM python:3.11
+ARG PYTHON_VERSION="3.11"
2
+
3
+FROM python:${PYTHON_VERSION}
4
5
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
6
0 commit comments