Skip to content

Commit

Permalink
test time
Browse files Browse the repository at this point in the history
  • Loading branch information
yufree committed Dec 22, 2023
1 parent a479383 commit fe90eba
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
57 changes: 57 additions & 0 deletions .github/workflows/docker-arm2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Docker xcmsrocker arm

on:
push:
branches: [ master ]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
docker:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Check Out Repo
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.IMAGE_NAME }}
tags: arm

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./armrocker
platforms: linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

2 changes: 1 addition & 1 deletion armrocker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM yufree/xcmsrocker:arm0
FROM yufree/xcmsrocker:arm
MAINTAINER "Miao Yu" [email protected]
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit fe90eba

Please sign in to comment.