Skip to content

Commit 8a56516

Browse files
committed
Create docker-image.yml
1 parent cde9905 commit 8a56516

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/actions/build.yaml

Whitespace-only changes.

.github/workflows/docker-image.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Build the Docker image
16+
run: docker build . --file Dockerfile --tag ib-systems/openstack-peepo-exporter:$(date +%s)

0 commit comments

Comments
 (0)