Add Docker Image CI

This commit is contained in:
haya14busa
2020-01-19 04:16:07 +00:00
parent de5e611b2b
commit a9235f7007

9
.github/workflows/dockerimage.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ${{ github.repository }}:$(date +%s)