-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathbuild-images.sh
More file actions
executable file
·12 lines (11 loc) · 960 Bytes
/
build-images.sh
File metadata and controls
executable file
·12 lines (11 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
# Do not edit by hand; please use build scripts/templates to make changes
set -eo pipefail
docker context create cimg
docker buildx create --use cimg
docker buildx build --platform=linux/amd64 --file 3.14/Dockerfile -t cimg/python:3.14.4 -t cimg/python:3.14 --push .
docker buildx build --platform=linux/amd64 --file 3.14/node/Dockerfile -t cimg/python:3.14.4-node -t cimg/python:3.14-node --push .
docker buildx build --platform=linux/amd64 --file 3.14/browsers/Dockerfile -t cimg/python:3.14.4-browsers -t cimg/python:3.14-browsers --push .
docker buildx build --platform=linux/amd64 --file 3.13/Dockerfile -t cimg/python:3.13.13 -t cimg/python:3.13 --push .
docker buildx build --platform=linux/amd64 --file 3.13/node/Dockerfile -t cimg/python:3.13.13-node -t cimg/python:3.13-node --push .
docker buildx build --platform=linux/amd64 --file 3.13/browsers/Dockerfile -t cimg/python:3.13.13-browsers -t cimg/python:3.13-browsers --push .