From 6b75e2c75db16c40c7183755071ca844a29da669 Mon Sep 17 00:00:00 2001 From: David Abramov Date: Tue, 26 May 2026 11:34:52 -0700 Subject: [PATCH] Updating Dockerfile to not use requirements.txt --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a89516cb..55dcac2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ FROM prefecthq/prefect:3.4.2-python3.13 WORKDIR /app -COPY ./requirements.txt /tmp/ - -RUN pip install -U pip && pip install -r /tmp/requirements.txt COPY . /app/ -RUN pip install -e . \ No newline at end of file + +RUN pip install --no-cache-dir -U pip && \ + pip install --no-cache-dir .