We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e02dd95 commit 5cb64d0Copy full SHA for 5cb64d0
2 files changed
.github/workflows/docker.yml
@@ -40,10 +40,14 @@ jobs:
40
type=semver,pattern={{major}}.{{minor}}
41
type=raw,value=latest
42
43
+ - name: Set up QEMU
44
+ uses: docker/setup-qemu-action@v3
45
+
46
- name: Build and push
47
uses: docker/build-push-action@v6
48
with:
49
context: .
50
+ platforms: linux/amd64,linux/arm64
51
push: true
52
tags: ${{ steps.meta.outputs.tags }}
53
labels: ${{ steps.meta.outputs.labels }}
Dockerfile
@@ -1,5 +1,7 @@
1
FROM python:3.12-slim
2
3
+LABEL org.opencontainers.image.source="https://github.com/leinelab/makerspaceapi"
4
5
WORKDIR /app
6
7
# Install dependencies
0 commit comments