Skip to content

Commit

Permalink
fix(generic): Update the FastAPI install on genric module doctest sam…
Browse files Browse the repository at this point in the history
…ples (#686)

### What was fixed
[FastAPI](https://github.com/fastapi/fastapi) now requires to provide
the specific suit for the install, as a result one of the doctest (part
of the `generic module`) got broken and its Dockerfile sample needed to
be updated.
  • Loading branch information
Tranquility2 authored Aug 17, 2024
1 parent 4912725 commit 5216b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/generic/tests/samples/fastapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.9

WORKDIR /app

RUN pip install fastapi
RUN pip install fastapi[standard]

COPY ./app /app

Expand Down

0 comments on commit 5216b02

Please sign in to comment.