Skip to content

Commit

Permalink
feat: create docker-ci (build image)
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Broudoux <[email protected]>
  • Loading branch information
abroudoux committed Nov 21, 2024
1 parent 2af3020 commit f692b8b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Docker image

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
build_image:
runs-on: ubuntu-latest
steps:
- name: build image
run: docker build -t abroudoux/better-app -f docker/Dockerfile .
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Continuous Integration
name: Continuous Tests Integration

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
unit-test:
Expand Down

0 comments on commit f692b8b

Please sign in to comment.