summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-06-20 15:24:02 -0400
committerGitHub <noreply@github.com>2020-06-20 15:24:02 -0400
commit7903fbec803264df91b250e42f940217119d859f (patch)
treef339acf96a0d4855b69f46c576dbb41e03c1dc15
parente9e192ce20e2f863a836c3ee9ab364921d068116 (diff)
Create docker-image.yml
-rw-r--r--.github/workflows/docker-image.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
new file mode 100644
index 00000000..830925a8
--- /dev/null
+++ b/.github/workflows/docker-image.yml
@@ -0,0 +1,18 @@
+name: Docker Image CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Build the Docker image
+ run: docker build . --file contrib/docker/Dockerfile --tag my-image-name:$(date +%s)