Skip to content

Commit 783399c

Browse files
Updating makefile adding 3.13 support
1 parent 85b0ade commit 783399c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ build:
2525
--build-arg base_image=python:3.12-slim-bookworm \
2626
-t ${REPO}:3.12-${IMAGE_TAG} \
2727
./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/.
2834
push:
2935
echo "Push specific tag/release"
3036

@@ -38,4 +44,7 @@ push:
3844
docker push ${REPO}:3.11-${IMAGE_TAG}
3945

4046
# Python 3.12
41-
docker push ${REPO}:3.12-${IMAGE_TAG}
47+
docker push ${REPO}:3.12-${IMAGE_TAG}
48+
49+
# Python 3.13
50+
docker push ${REPO}:3.13-${IMAGE_TAG}

0 commit comments

Comments
 (0)