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 bccd3a5 commit d2af6c0Copy full SHA for d2af6c0
.github/workflows/test.yml
@@ -79,4 +79,4 @@ jobs:
79
- uses: extractions/setup-just@v2
80
- run: just test-integration
81
env:
82
- PYTHON_VERSION: ${{ matrix.python-version }}
+ PYTHON_IMAGE: python:${{ matrix.python-version }}-slim-bullseye
Dockerfile
@@ -1,5 +1,6 @@
1
-ARG PYTHON_VERSION
2
-FROM python:${PYTHON_VERSION}-slim-bullseye
+ARG PYTHON_IMAGE
+# hadolint ignore=DL3006
3
+FROM ${PYTHON_IMAGE}
4
5
# hadolint ignore=DL3013,DL3042
6
RUN pip install uv
docker-compose.yml
@@ -3,7 +3,7 @@ services:
build:
context: .
args:
- PYTHON_VERSION: ${PYTHON_VERSION:-3.12}
+ PYTHON_IMAGE: ${PYTHON_IMAGE:-python:3.12-slim-bullseye}
7
depends_on:
8
artemis:
9
condition: service_started
0 commit comments