mirror of
https://github.com/aunefyren/wrapperr
synced 2025-01-10 00:38:41 +00:00
support arm64 on docker images
This commit is contained in:
parent
8cd62828df
commit
6788a14b9d
3 changed files with 57 additions and 3 deletions
29
.github/workflows/docker-image-beta.yml
vendored
29
.github/workflows/docker-image-beta.yml
vendored
|
@ -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 }}
|
29
.github/workflows/docker-image.yml
vendored
29
.github/workflows/docker-image.yml
vendored
|
@ -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 }}
|
|
@ -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}
|
||||
|
||||
|
|
Loading…
Reference in a new issue