-
Notifications
You must be signed in to change notification settings - Fork 104
69 lines (67 loc) · 2.05 KB
/
docker-images.yaml
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
name: Indigo Docker images preparation
on:
workflow_dispatch:
jobs:
docker-buildpack-centos7:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
fetch-depth: 500
- name: Build buildpack-centos7
uses: docker/build-push-action@v2
with:
context: .
file: .ci/docker/buildpack-centos7/Dockerfile
tags: epmlsop/buildpack-centos7:latest
- name: Push buildpack-centos7
run: docker push epmlsop/buildpack-centos7:latest
docker-buildpack-arm64:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
fetch-depth: 500
- name: Build buildpack-arm64
uses: docker/build-push-action@v2
with:
context: .
file: .ci/docker/buildpack-arm64/Dockerfile
tags: epmlsop/buildpack-arm64:latest
- name: Push buildpack-arm64
run: docker push epmlsop/buildpack-arm64:latest
docker-indigo-tester:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
fetch-depth: 500
- name: Build indigo-tester
uses: docker/build-push-action@v2
with:
context: .
file: .ci/docker/indigo-tester/Dockerfile
tags: epmlsop/indigo-tester:latest
- name: Push indigo-tester
run: docker push epmlsop/indigo-tester:latest