Browse Source

Create docker-image.yml

tags/v0.3.11-rc1
Haixuan Xavier Tao GitHub 10 months ago
parent
commit
1ee502796e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 0 deletions
  1. +21
    -0
      .github/workflows/docker-image.yml

+ 21
- 0
.github/workflows/docker-image.yml View File

@@ -0,0 +1,21 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
paths:
- "docker/**"
pull_request:
branches: [ "main" ]
paths:
- "docker/**"

jobs:

build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build docker/minimal --tag dora-minimal:$(date +%s)

Loading…
Cancel
Save