2024-12-18 09:37:29 +01:00
|
|
|
FROM python:3.12-slim-bookworm AS builder
|
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
|
2025-08-21 16:17:19 +02:00
|
|
|
RUN apt-get install -y curl pkg-config build-essential libnss-myhostname automake
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2025-08-21 16:17:19 +02:00
|
|
|
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
2022-08-04 08:05:51 +02:00
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
2022-09-23 21:11:54 +02:00
|
|
|
|
2024-07-10 14:22:44 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# Only copy the files required to install the dependencies
|
2025-08-21 16:17:19 +02:00
|
|
|
COPY pyproject.toml uv.lock ./
|
2025-06-24 18:09:48 +02:00
|
|
|
RUN touch README.md
|
2024-07-10 14:22:44 +02:00
|
|
|
|
|
|
|
|
RUN mkdir data
|
|
|
|
|
|
2025-08-21 16:17:19 +02:00
|
|
|
RUN uv sync --all-extras
|
2024-07-10 14:22:44 +02:00
|
|
|
|
2024-12-18 09:37:29 +01:00
|
|
|
FROM python:3.12-slim-bookworm
|
2024-07-10 14:22:44 +02:00
|
|
|
|
2023-03-09 15:10:50 +01:00
|
|
|
# needed for backups postgresql-client version 14 (pg_dump)
|
2024-07-10 14:22:44 +02:00
|
|
|
RUN apt-get update && apt-get -y upgrade && \
|
|
|
|
|
apt-get -y install gnupg2 curl lsb-release && \
|
|
|
|
|
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
|
|
|
|
|
curl -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
|
|
|
|
|
apt-get update && \
|
|
|
|
|
apt-get -y install postgresql-client-14 postgresql-client-common && \
|
|
|
|
|
apt-get clean all && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2025-08-21 16:17:19 +02:00
|
|
|
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
2024-07-10 14:22:44 +02:00
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
|
|
|
|
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 . .
|
2024-07-10 14:22:44 +02:00
|
|
|
COPY --from=builder /app/.venv .venv
|
2023-03-09 13:48:44 +01:00
|
|
|
|
2025-08-21 16:17:19 +02:00
|
|
|
RUN uv sync --all-extras
|
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
|
|
|
|
2026-07-13 10:17:28 +02:00
|
|
|
CMD ["sh", "-c", "uv --offline run --no-sync lnbits --port $LNBITS_PORT --host $LNBITS_HOST --forwarded-allow-ips='*'"]
|