lnbits/Dockerfile

14 lines
424 B
Docker
Raw Normal View History

FROM python:3.9-slim
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
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH"
2020-04-21 12:12:29 +00:00
WORKDIR /app
COPY . .
RUN poetry config virtualenvs.create false
RUN poetry install --no-dev --no-root
RUN poetry run python build.py
2020-04-21 12:12:29 +00:00
EXPOSE 5000
CMD ["poetry", "run", "lnbits", "--port", "5000", "--host", "0.0.0.0"]