support arm64 on docker images

This commit is contained in:
Michael C 2022-12-09 11:36:41 -05:00
parent 8cd62828df
commit 6788a14b9d
No known key found for this signature in database
GPG key ID: FFB04FB3B878B7B4
3 changed files with 57 additions and 3 deletions

View file

@ -10,14 +10,41 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: |
aunefyren/wrapperr
ghcr.io/${{ github.repository_owner }}/wrapperr
tags: |
type-raw,value=beta
flavor: |
latest=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
context: .
tags: aunefyren/wrapperr:beta
tags: ${{ steps.meta.outputs.tags }}

View file

@ -10,15 +10,42 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: |
aunefyren/wrapperr
ghcr.io/${{ github.repository_owner }}/wrapperr
tags: |
type-raw,value=${{ github.ref_name }}
flavor: |
latest=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: docker.io
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
context: .
tags: aunefyren/wrapperr:latest, aunefyren/wrapperr:${{ github.ref_name }}
tags: ${{ steps.meta.outputs.tags }}

View file

@ -11,7 +11,7 @@ WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
RUN CGO_ENABLED=0 go build
EXPOSE ${port}