Skip to content

Commit

Permalink
ci: Updates docker build job
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Oct 25, 2023
1 parent 3d9b2fc commit 7f6b3cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.3.0"
poetry-version: "1.6.1"
- name: Resolve dependencies
run: poetry export -f requirements.txt --without-hashes --output requirements.txt
- name: Build & run docker
env:
API_URL: ${{ secrets.API_URL }}
API_LOGIN: ${{ secrets.API_LOGIN }}
API_PWD: ${{ secrets.API_PWD }}
run: docker-compose -f docker-compose-dev.yml up -d --build
run: docker-compose up -d --build
- name: Check docker sanity
run: sleep 200 && docker-compose logs && curl http://localhost:8050/
run: sleep 200 && docker-compose logs && curl http://platform.localhost:8050/

0 comments on commit 7f6b3cf

Please sign in to comment.