lnbits/Dockerfile

32 lines
827 B
Docker
Raw Permalink Normal View History

FROM python:3.10-slim-bullseye
2022-09-20 10:22:17 +00:00
RUN apt-get clean
2021-02-18 21:20:55 +00:00
RUN apt-get update
2023-03-09 14:10:50 +00:00
RUN apt-get install -y curl pkg-config build-essential
2023-03-09 14:10:50 +00:00
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH"
2023-03-09 14:10:50 +00:00
# needed for backups postgresql-client version 14 (pg_dump)
2023-03-09 15:01:52 +00:00
RUN apt-get install -y wget
2023-03-09 14:10:50 +00:00
RUN echo "deb http://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
RUN apt-get update
2023-03-09 15:01:52 +00:00
RUN apt-get install -y postgresql-client-14
2023-03-09 14:10:50 +00:00
2020-04-21 12:12:29 +00:00
WORKDIR /app
COPY . .
RUN mkdir data
RUN poetry config virtualenvs.create false
RUN poetry install --only main
ENV LNBITS_PORT="5000"
ENV LNBITS_HOST="0.0.0.0"
2020-04-21 12:12:29 +00:00
EXPOSE 5000
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]