Skip to content

Commit dc68502

Browse files
committed
publish custom manylinux_2_28_x86_64 image with GraalVM, Maven, Poetry
1 parent f7d70d3 commit dc68502

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/docker.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# build and publish manylinux_2_28_x86_64 with GraalVM, Maven and Poetry
2+
name: Docker
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: 'Tag for the Docker image'
8+
required: true
9+
default: 'latest'
10+
11+
jobs:
12+
login:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Check out
16+
uses: actions/checkout@v4
17+
18+
- name: Login to GitHub Container Registry
19+
uses: docker/login-action@v3
20+
with:
21+
registry: ghcr.io
22+
username: ${{ github.actor }}
23+
password: ${{ secrets.GITHUB_TOKEN }}
24+
25+
- name: Set up QEMU
26+
uses: docker/setup-qemu-action@v3
27+
28+
- name: Set up Docker Buildx
29+
uses: docker/setup-buildx-action@v3
30+
31+
- name: Build and push
32+
uses: docker/build-push-action@v6
33+
with:
34+
context: docker
35+
file: docker/Dockerfile_manylinux_2_28_x86_64
36+
push: true
37+
tags: virtualcell/manylinux_2_28_x86_64:${{ github.event.inputs.tag }}

0 commit comments

Comments
 (0)