2024-05-09 18:26:45 +02:00
|
|
|
FROM python:3.10-slim-bookworm
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2022-09-20 12:22:17 +02:00
|
|
|
RUN apt-get clean
|
2021-02-18 22:20:55 +01:00
|
|
|
RUN apt-get update
|
2024-02-16 14:24:50 +01:00
|
|
|
RUN apt-get install -y curl pkg-config build-essential libnss-myhostname
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2023-03-09 15:10:50 +01:00
|
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
2022-08-04 08:05:51 +02:00
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2023-03-09 15:10:50 +01:00
|
|
|
# needed for backups postgresql-client version 14 (pg_dump)
|
2024-05-09 18:26:45 +02:00
|
|
|
RUN apt install -y postgresql-common ca-certificates
|
|
|
|
RUN install -d /usr/share/postgresql-common/pgdg
|
|
|
|
RUN curl -o /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc
|
|
|
|
RUN sh -c 'echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
2023-03-09 15:10:50 +01:00
|
|
|
RUN apt-get update
|
2023-03-09 16:01:52 +01:00
|
|
|
RUN apt-get install -y postgresql-client-14
|
2023-03-09 15:10:50 +01:00
|
|
|
|
2020-04-21 14:12:29 +02:00
|
|
|
WORKDIR /app
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2022-08-04 08:05:51 +02:00
|
|
|
COPY . .
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2023-03-09 13:48:44 +01:00
|
|
|
RUN mkdir data
|
|
|
|
|
2023-01-26 10:43:12 +01:00
|
|
|
RUN poetry install --only main
|
2022-09-23 21:11:54 +02:00
|
|
|
|
|
|
|
ENV LNBITS_PORT="5000"
|
|
|
|
ENV LNBITS_HOST="0.0.0.0"
|
|
|
|
|
2020-04-21 14:12:29 +02:00
|
|
|
EXPOSE 5000
|
2022-09-23 21:11:54 +02:00
|
|
|
|
|
|
|
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]
|