0dffb2c1a0
* moving build file into tools, keep rootdir clean * formatting * make flake happy
25 lines
513 B
Docker
25 lines
513 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 tools/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"]
|