From 5b56cc18d5b783a0eb8483e42cfe010b45ea14dc Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Fri, 31 Jan 2025 11:17:42 -0500 Subject: [PATCH] remove fastapi and pydantic extras --- cicd/tests.py | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/cicd/tests.py b/cicd/tests.py index 616554e64..7f37db235 100644 --- a/cicd/tests.py +++ b/cicd/tests.py @@ -38,16 +38,12 @@ temp_dir = tempfile.mkdtemp() with open(pathlib.Path(temp_dir) / "Dockerfile", "w", encoding="utf-8") as f: f.write(dockerfile_contents) -cicd_image = ( - Image.from_dockerfile( - pathlib.Path(temp_dir) / "Dockerfile", - context_mount=None, - force_build=True, - gpu="A10G", - ) - .env(df_args) - .pip_install("fastapi==0.110.0", "pydantic==2.6.3") -) +cicd_image = Image.from_dockerfile( + pathlib.Path(temp_dir) / "Dockerfile", + context_mount=None, + force_build=True, + gpu="A10G", +).env(df_args) app = App("Axolotl CI/CD", secrets=[])