block-explorer/.github/workflows/docker-image.yml
Ben van Hartingsveldt 10da9c87d7
Dockerize project
2025-05-25 19:36:22 +02:00

16 lines
297 B
YAML

name: Docker Image CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)