build(deps): bump boto3 from 1.34.123 to 1.34.134 #18
Workflow file for this run
This file contains 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: Run CI in Docker | |
on: [pull_request, workflow_call] | |
jobs: | |
ci-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build django-app on Docker | |
run: docker build . -t django-app --target production | |
- name: Run endpoint check | |
run: | | |
docker run --rm -d --name django-app-container -p 80:80 django-app | |
sleep 5 | |
curl --fail http://0.0.0.0:80 |