Create docker-image.yml

Former-commit-id: 13a63d139757d6cd291d2268bc961d69eb4a00f2
pull/160/head
Eternal Reclaimer 1 year ago committed by GitHub
parent abb0072547
commit d8c9b7e64b

@ -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