From d411a192a21d8ccdab30f441e936f15ea74d0f00 Mon Sep 17 00:00:00 2001 From: peterdudfield Date: Tue, 4 Feb 2025 13:41:34 +0000 Subject: [PATCH] use pip install -e . --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e38048a..f181a00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY README.md app/README.md WORKDIR /app # Copy the requirements file and install -RUN pip install --no-cache-dir . +RUN pip install -e . # Set the entrypoint command to run the app CMD ["python", "src/cloudcasting_app/app.py"] \ No newline at end of file