forked from CESNET/ipfixprobe
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 1.15 KB
/
prepare.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
name: prepare
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
docker-image-ol9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build $DOCKER_OPTS -t docker_image:ol9 --build-arg OS_DISTRO=oraclelinux --build-arg OS_RELEASE=9 -f docker/Dockerfile .
# docker-image-ol8:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build the Docker image
# run: docker build $DOCKER_OPTS -t docker_image:ol8 --build-arg OS_DISTRO=oraclelinux --build-arg OS_RELEASE=8 -f docker/Dockerfile .
# docker-image-rl8:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build the Docker image
# run: docker build $DOCKER_OPTS -t docker_image:rl9 --build-arg OS_DISTRO=rockylinux --build-arg OS_RELEASE=9 -f docker/Dockerfile .
# docker-image-fedora40:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build the Docker image
# run: docker build $DOCKER_OPTS -t docker_image:fedora40 --build-arg OS_DISTRO=fedora --build-arg OS_RELEASE=40 -f docker/Dockerfile .