forked from nipreps/fmriprep
-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (92 loc) · 3.16 KB
/
docker.yml
File metadata and controls
103 lines (92 loc) · 3.16 KB
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
name: Docker build
on:
workflow_dispatch:
push:
branches: [ "master", "main", "maint/*", "gha-docker*" ]
tags: "*"
pull_request:
branches: [ "master", "main", "maint/*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
FORCE_COLOR: true
jobs:
build-container:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Prune container
run: |
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/hostedtoolcache
docker system prune -af
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 200
fetch-tags: true
ref: ${{ github.ref }}
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get base image tag, check
id: base
run: |
export BASE_IMAGE=$( grep BASE_IMAGE= Dockerfile | cut -d= -f2 )
export BASE_IMAGE_NAME=${BASE_IMAGE%:*}
export BASE_TAG=${BASE_IMAGE#*:}
echo "image=$BASE_IMAGE" >> $GITHUB_OUTPUT
echo "name=$BASE_IMAGE_NAME" >> $GITHUB_OUTPUT
echo "tag=$BASE_TAG" >> $GITHUB_OUTPUT
env
if docker manifest inspect $BASE_IMAGE; then
echo "build=false" >> $GITHUB_OUTPUT
else
echo "build=true" >> $GITHUB_OUTPUT
fi
- name: Build base image
if: steps.base.outputs.build == 'true'
uses: docker/build-push-action@v6
with:
file: Dockerfile.base
load: true
push: ${{ github.event_name != 'pull_request' }}
tags: |
${{ steps.base.outputs.image }}
${{ steps.base.outputs.name }}:latest
platforms: linux/amd64
cache-from: |
type=registry,ref=${{ steps.base.outputs.name }}:latest
cache-to: type=inline
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
cache-from: |
type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:gha-docker
type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TARGET_BRANCH }}
type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.tags[0] }}
cache-to: type=inline
env:
TARGET_BRANCH: ${{ github.base_ref || github.ref_name }}