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 85b0ade commit 783399cCopy full SHA for 783399c
Makefile
@@ -25,6 +25,12 @@ build:
25
--build-arg base_image=python:3.12-slim-bookworm \
26
-t ${REPO}:3.12-${IMAGE_TAG} \
27
./3.12/.
28
+
29
+ # Python 3.13
30
+ docker build \
31
+ --build-arg base_image=python:3.13-slim-bookworm \
32
+ -t ${REPO}:3.13-${IMAGE_TAG} \
33
+ ./3.13/.
34
push:
35
echo "Push specific tag/release"
36
@@ -38,4 +44,7 @@ push:
38
44
docker push ${REPO}:3.11-${IMAGE_TAG}
39
45
40
46
# Python 3.12
41
- docker push ${REPO}:3.12-${IMAGE_TAG}
47
+ docker push ${REPO}:3.12-${IMAGE_TAG}
48
49
50
+ docker push ${REPO}:3.13-${IMAGE_TAG}
0 commit comments