Create docker-image.yml

Former-commit-id: d6e01606a0411434e915068e75ff8a17bc5cf221
pull/160/head
Eternal Reclaimer 1 year ago committed by GitHub
parent 33a4804a4e
commit ed212a9318

@ -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@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
Loading…
Cancel
Save