From 5216b0241a27afe3419f5c4a6d500dc27154ddd4 Mon Sep 17 00:00:00 2001 From: Roy Moore Date: Sat, 17 Aug 2024 22:19:36 +0300 Subject: [PATCH] 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. --- modules/generic/tests/samples/fastapi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generic/tests/samples/fastapi/Dockerfile b/modules/generic/tests/samples/fastapi/Dockerfile index f56288cd..88f384ed 100644 --- a/modules/generic/tests/samples/fastapi/Dockerfile +++ b/modules/generic/tests/samples/fastapi/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.9 WORKDIR /app -RUN pip install fastapi +RUN pip install fastapi[standard] COPY ./app /app