Build cf.gov Docker images #18
Workflow file for this run
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: Build cf.gov Docker images | |
| on: | |
| pull_request: | |
| merge_group: | |
| workflow_dispatch: | |
| jobs: | |
| build-docker-images: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build cfgov image | |
| run: docker build -t cfgov:latest . | |
| - name: Build cfgov-apache image | |
| run: docker build -t cfgov-apache:latest cfgov/apache |