From 51a623cd92503775f5f76dee90e880f06c91efbf Mon Sep 17 00:00:00 2001 From: cryptoteun Date: Fri, 23 Aug 2024 08:56:05 +0200 Subject: [PATCH] Fix docker issue --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d223e8f1c7..5bf299dbfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,9 @@ WORKDIR /app COPY . . COPY --from=builder /app/.venv .venv -RUN poetry install --only main +# Make sure this is runned on the Lightning Checkout branch +RUN poetry install --only lnc +# RUN poetry install --only main ENV LNBITS_PORT="5000" ENV LNBITS_HOST="0.0.0.0"