mirror of
https://github.com/cryptosharks131/lndg.git
synced 2026-08-13 12:33:04 +02:00
8 lines
No EOL
239 B
Docker
8 lines
No EOL
239 B
Docker
FROM python:3-alpine
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN apk add git && git clone https://github.com/cryptosharks131/lndg /app
|
|
WORKDIR /app
|
|
RUN git checkout "master"
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install whitenoise
|
|
ENTRYPOINT [ "sh" ] |