2022-08-04 06:05:51 +00:00
|
|
|
FROM python:3.9-slim
|
2021-02-18 21:20:55 +00:00
|
|
|
RUN apt-get update
|
2022-08-04 06:05:51 +00:00
|
|
|
RUN apt-get install -y curl
|
|
|
|
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
|
2022-08-04 06:05:51 +00:00
|
|
|
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
|
2022-08-04 06:05:51 +00:00
|
|
|
CMD ["poetry", "run", "lnbits", "--port", "5000", "--host", "0.0.0.0"]
|