Browse Source
🐛 Fix FastAPI People GitHub Action Docker dependencies (#2197)
pull/2198/head
Sebastián Ramírez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
.github/actions/people/Dockerfile
-
.github/workflows/people.yml
|
|
@ -1,6 +1,6 @@ |
|
|
|
FROM python:3.7 |
|
|
|
|
|
|
|
RUN pip install httpx PyGithub "pydantic==1.5.1" "pyyaml>=5.3.1,,6.0.0" |
|
|
|
RUN pip install httpx PyGithub "pydantic==1.5.1" "pyyaml>=5.3.1,6.0.0" |
|
|
|
|
|
|
|
COPY ./app /app |
|
|
|
|
|
|
|
|
|
@ -6,7 +6,7 @@ on: |
|
|
|
workflow_dispatch: |
|
|
|
|
|
|
|
jobs: |
|
|
|
deploy: |
|
|
|
fastapi-people: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|