mirror of
https://github.com/evroon/bracket.git
synced 2026-01-25 22:49:21 -05:00
15 lines
234 B
YAML
15 lines
234 B
YAML
name: docker
|
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build Docker image
|
|
run: sudo docker build .
|
|
working-directory: backend
|