lnbits-legend/Dockerfile

25 lines
485 B
Text
Raw Normal View History

2022-12-20 11:07:26 +01:00
FROM python:3.10-slim
2022-09-20 12:22:17 +02:00
RUN apt-get clean
2021-02-18 22:20:55 +01:00
RUN apt-get update
RUN apt-get install -y curl pkg-config build-essential postgresql-client
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH"
2020-04-21 14:12:29 +02:00
WORKDIR /app
COPY . .
RUN mkdir data
RUN poetry config virtualenvs.create false
RUN poetry install --only main
ENV LNBITS_PORT="5000"
ENV LNBITS_HOST="0.0.0.0"
2020-04-21 14:12:29 +02:00
EXPOSE 5000
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]