-
Notifications
You must be signed in to change notification settings - Fork 10
115 lines (100 loc) · 3.15 KB
/
build-pipy-nonroot.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: build-pipy-nonroot-image
on:
workflow_dispatch:
inputs:
tag:
description: 'pipy release tag'
required: true
type: string
jobs:
debian:
name: Build pipy debian images
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
include:
- platform: linux/amd64
runner: ubuntu-latest
suffix: amd64
- platform: linux/arm64
runner: [ self-hosted, ARM64 ]
suffix: arm64
runs-on: ${{ matrix.runner }}
steps:
- name: Login to DockerHub
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.RELEASE_DOCKER_USER }}
password: ${{ secrets.RELEASE_DOCKER_PASS }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build and Push
run: |
docker build --platform=${{ matrix.platform }} \
-t flomesh/pipy:${{ inputs.tag }}-debian-${{ matrix.suffix }} \
-f ./dockerfiles/Dockerfile.pipy-debian \
--build-arg PIPY_VERSION=${{ inputs.tag }} \
--push .
manifest:
name: Create Docker manifest
runs-on: ubuntu-22.04
needs: [debian]
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.2.0
- name: Login to DockerHub
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.RELEASE_DOCKER_USER }}
password: ${{ secrets.RELEASE_DOCKER_PASS }}
- name: Create Docker manifest
run: |
docker manifest create flomesh/pipy:${{ inputs.tag }}-debian \
--amend flomesh/pipy:${{ inputs.tag }}-debian-amd64 \
--amend flomesh/pipy:${{ inputs.tag }}-debian-arm64
docker manifest push flomesh/pipy:${{ inputs.tag }}-debian
pipy-nonroot:
name: Build pipy nonroot image
runs-on: ubuntu-22.04
needs: manifest
strategy:
matrix:
id: [ "nonroot", "debug-nonroot" ]
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.2.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.7.1
- name: Login to DockerHub
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.RELEASE_DOCKER_USER }}
password: ${{ secrets.RELEASE_DOCKER_PASS }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v5.5.1
with:
images: flomesh/pipy
tags: |
type=raw,${{ inputs.tag }}-${{ matrix.id }}
- name: Build and Push
uses: docker/build-push-action@v6.9.0
with:
context: .
file: ./dockerfiles/Dockerfile.pipy-nonroot
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: |
DISTROLESS_TAG=${{ matrix.id }}
PIPY_VERSION=${{ inputs.tag }}