From a84de4bacb9cb12330b9bcd3765bf178f2d6726d Mon Sep 17 00:00:00 2001 From: Jeremy Moore Date: Wed, 25 Sep 2024 13:20:37 -0400 Subject: [PATCH] install the hushline app after installing dependencies --- Dockerfile.prod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.prod b/Dockerfile.prod index d5a0ea5bd..5954b35a9 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -24,6 +24,8 @@ RUN poetry install --no-root # Copy the rest of the application COPY . /app +RUN poetry install + # Expose port 8080 EXPOSE 8080