Gitea Actions/Github Actions 构建 Quarkus 多平台 Native Docker 镜像
借助 Gitea Actions/Github Actions 实现发布版本后,自动打包 Quarkus 项目并构建成 Native Docker 镜像,推送到阿里云 Docker 仓库中借助 Gitea Actions/Github Actions 实现发布版本后,自动打包 SpringBoot 项目并构建成 Docker 镜像,推送到阿里云 Docker 仓库中
一、准备Quarkus项目
使用 idea
新建即可,选择Gradle,java版本选择17
二、准备Dockerfile
1 2 3 4 5 6 7
| FROM seepine/alpine-glibc WORKDIR /work/ COPY ./build/*-runner /work/application RUN chmod 775 /work EXPOSE 8080 CMD ["./application", "-Dquarkus.http.host=0.0.0.0"]
|
三、准备build.yaml
新建.gitea/workflows/build.yaml
文件
需要提前配置 Docker 仓库的密码到 Secrets 中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
name: Build Image
on: push: tags: - v* env: DOCKER_REGISTRY: registry.cn-hangzhou.aliyuncs.com DOCKER_USERNAME: seepine jobs: build-image: runs-on: ubuntu-latest container: image: seepine/ubuntu:act volumes: - ubuntu_dockercache:/opt/dockercache steps: - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 1
- name: Setup Graalvm uses: graalvm/setup-graalvm@v1 with: java-version: '17' version: '22.3.2' components: 'native-image' cache: 'gradle'
- name: Build Project run: | chmod a+x ./gradlew ./gradlew build -Dquarkus.package.type=native -x test --no-daemon
- name: Docker build push uses: seepine/action-docker-build-push@v1 with: registry: ${{ env.DOCKER_REGISTRY }} username: ${{ env.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} platforms: linux/amd64,linux/arm64
|
四、发布版本
当我们发布一个 v1.0.0
版本时,将会看到 Actions 进行工作,最终执行完成后将会推送构建成功的消息到企业微信中,消息为
1 2
| springboot-demo构建成功。 镜像: registry.cn-hangzhou.aliyuncs.com/seepine/springboot-demo:1.0.0
|
五、运行
1
| docker run --rm -p 8080:8080 registry.cn-hangzhou.aliyuncs.com/seepine/quarkus-demo:1.0.0
|