Add CI workflow to build Docker images #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build mod_event_agent module image | |
| run: docker build -f Dockerfile -t mod_event_agent:latest . | |
| - name: Build FreeSWITCH runtime image | |
| run: docker build -f Dockerfile.freeswitch -t mod_event_agent_fs:ci . |