We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cec6b4 commit f725875Copy full SHA for f725875
2 files changed
.github/workflows/publish-docker.yml
@@ -19,6 +19,12 @@ jobs:
19
- name: Checkout repository
20
uses: actions/checkout@v4
21
22
+ - name: Set up QEMU
23
+ uses: docker/setup-qemu-action@v3
24
+
25
+ - name: Set up Docker Buildx
26
+ uses: docker/setup-buildx-action@v3
27
28
- name: Log in to GitHub Container Registry
29
uses: docker/login-action@v3
30
with:
@@ -40,6 +46,7 @@ jobs:
40
46
41
47
context: ./containers
42
48
file: ./containers/bun.Dockerfile
49
+ platforms: linux/amd64,linux/arm64
43
50
push: true
44
51
tags: ${{ steps.meta.outputs.tags }}
45
52
labels: ${{ steps.meta.outputs.labels }}
containers/bun.Dockerfile
@@ -1,3 +1,3 @@
1
FROM oven/bun:1-alpine
2
-
+# Add git to allow submodules to be cloned
3
RUN apk add --no-cache git
0 commit comments