Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Official ARM64 Docker image #3481

Open
lesderid opened this issue Jan 12, 2025 · 1 comment
Open

Official ARM64 Docker image #3481

lesderid opened this issue Jan 12, 2025 · 1 comment

Comments

@lesderid
Copy link

The kinto/kinto-server image on Docker Hub is only built for AMD64.

Would it be possible to also build and publish an official ARM64 version?

@leplatrem
Copy link
Contributor

I guess so! You should be able to add it here

push-to-registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
environment:
name: release
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: kinto/kinto-server
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants