From a5138691f2e5828281c4c23e79ec4f3770dab668 Mon Sep 17 00:00:00 2001 From: koalasat Date: Tue, 15 Oct 2024 12:52:41 +0200 Subject: [PATCH] Fix Django --- compose/lndg/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compose/lndg/Dockerfile b/compose/lndg/Dockerfile index 6d64f8c..50dd136 100644 --- a/compose/lndg/Dockerfile +++ b/compose/lndg/Dockerfile @@ -2,8 +2,9 @@ FROM python:3-alpine ENV TZ=Europe/London ENV PYTHONUNBUFFERED 1 -RUN apk add git g++ linux-headers && git clone --branch v1.9.0 https://github.com/cryptosharks131/lndg /app +RUN apk add git g++ linux-headers && git clone https://github.com/cryptosharks131/lndg /app WORKDIR /app +RUN git checkout "v1.9.0" RUN pip install -r requirements.txt RUN pip install supervisor whitenoise