Skip to content

Merge pull request #22 from gizmoguy/python-3.11-alpine-3.18 #34

Merge pull request #22 from gizmoguy/python-3.11-alpine-3.18

Merge pull request #22 from gizmoguy/python-3.11-alpine-3.18 #34

Workflow file for this run

name: Test workflow
on: [push, pull_request]
jobs:
docker-image:
name: "Build docker image"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up qemu
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Set up docker buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
- name: Run buildx
run: |
docker buildx build \
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x \
--file Dockerfile \
.