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=[])