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 .