2022-12-20 10:07:26 +00:00
|
|
|
FROM python:3.10-slim
|
2022-09-23 19:11:54 +00:00
|
|
|
|
2022-09-20 10:22:17 +00:00
|
|
|
RUN apt-get clean
|
2021-02-18 21:20:55 +00:00
|
|
|
RUN apt-get update
|
2022-09-20 10:22:17 +00:00
|
|
|
RUN apt-get install -y curl pkg-config build-essential
|
2022-08-04 06:05:51 +00:00
|
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
2022-09-23 19:11:54 +00:00
|
|
|
|
2022-08-04 06:05:51 +00:00
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
2022-09-23 19:11:54 +00:00
|
|
|
|
2020-04-21 12:12:29 +00:00
|
|
|
WORKDIR /app
|
2022-11-16 23:34:35 +00:00
|
|
|
RUN mkdir -p lnbits/data
|
2022-09-23 19:11:54 +00:00
|
|
|
|
2022-08-04 06:05:51 +00:00
|
|
|
COPY . .
|
2022-09-23 19:11:54 +00:00
|
|
|
|
2022-08-04 06:05:51 +00:00
|
|
|
RUN poetry config virtualenvs.create false
|
2023-01-26 09:43:12 +00:00
|
|
|
RUN poetry install --only main
|
2023-02-01 16:19:56 +00:00
|
|
|
RUN poetry run python tools/build.py
|
2022-09-23 19:11:54 +00:00
|
|
|
|
|
|
|
ENV LNBITS_PORT="5000"
|
|
|
|
ENV LNBITS_HOST="0.0.0.0"
|
|
|
|
|
2020-04-21 12:12:29 +00:00
|
|
|
EXPOSE 5000
|
2022-09-23 19:11:54 +00:00
|
|
|
|
|
|
|
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]
|