mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: add docker image build CI
This commit is contained in:
parent
d1fde17220
commit
069ba56ed3
2 changed files with 13 additions and 28 deletions
13
.github/workflows/docker-build.yaml
vendored
Normal file
13
.github/workflows/docker-build.yaml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name: App Build
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "**"
|
||||
jobs:
|
||||
docker-build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build Docker Image
|
||||
run: docker build -t learnhouse .
|
||||
working-directory: .
|
||||
Loading…
Add table
Add a link
Reference in a new issue