5a0b217d63
* lnbits funding source * add create_fake_user to workflow * change quotes in workflow ymal * not use interactive docker exec * update tools/create_fake_admin to not use lnbits imports * formatting Co-authored-by: calle <93376500+callebtc@users.noreply.github.com>
25 lines
507 B
Docker
25 lines
507 B
Docker
FROM python:3.10-slim
|
|
|
|
RUN apt-get clean
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl pkg-config build-essential
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
|
|
WORKDIR /app
|
|
RUN mkdir -p lnbits/data
|
|
|
|
COPY . .
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --only main
|
|
RUN poetry run python build.py
|
|
|
|
ENV LNBITS_PORT="5000"
|
|
ENV LNBITS_HOST="0.0.0.0"
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]
|