Create .github/workflows/docker-image.yml

This commit is contained in:
The Administrator
2023-03-21 22:31:22 -07:00
committed by GitHub
parent f3fc25344c
commit a85ae82c40
+18
View File
@@ -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)