Skip to content

Commit 5216b02

Browse files
authored
fix(generic): Update the FastAPI install on genric module doctest samples (#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.
1 parent 4912725 commit 5216b02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/generic/tests/samples/fastapi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.9
22

33
WORKDIR /app
44

5-
RUN pip install fastapi
5+
RUN pip install fastapi[standard]
66

77
COPY ./app /app
88

0 commit comments

Comments
 (0)