Skip to content

Python 3.11

Python 3.11 #12

Workflow file for this run

name: Python 3.11
on:
schedule:
- cron: '3 11 * * 6'
push:
branches:
- master
jobs:
buildx:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
-
name: Checkout
uses: actions/checkout@v4
- name: Set up SSH
uses: MrSquaare/ssh-setup-action@v3
with:
host: ${{ secrets.SSH_ARM64_HOST }}
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
private-key-name: ssh-arm64-host
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: amd64
append: |
- endpoint: ssh://${{ secrets.SSH_ARM64_USER }}@${{ secrets.SSH_ARM64_HOST }}
platforms: arm64
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Generate bake file
run: |
cat <<'EOF' > docker-bake.hcl
group "default" {
targets = [
"default"
]
}
target "default" {
context="."
dockerfile="Dockerfile.python"
platforms = [
"linux/amd64",
"linux/arm64"
]
tags = [
"16nsk/devcontainers:python-3.11"
]
args = {
PYTHON_VERSION="3.11",
IMAGE="16nsk/devcontainers",
DISTRO="ubuntu",
VERSION="ubuntu-22.04"
}
}
EOF
- name: Build and push
uses: docker/bake-action@v4
with:
push: true