19 lines
311 B
YAML

name: Docker image CI
on:
push:
branches:
- 'main'
- 'feature/*'
- 'dependabot/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: |
cd setup_files
docker build . -f Dockerfile