Merge pull request #1573 from lnbits/feat-backup-pg_dump

BUG: Dockerfile does not support backup funcionality
This commit is contained in:
Arc 2023-03-10 09:58:53 +00:00 committed by GitHub
commit 4f3159339a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,18 +3,25 @@ FROM python:3.10-slim
RUN apt-get clean RUN apt-get clean
RUN apt-get update RUN apt-get update
RUN apt-get install -y curl pkg-config build-essential RUN apt-get install -y curl pkg-config build-essential
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH" ENV PATH="/root/.local/bin:$PATH"
# needed for backups postgresql-client version 14 (pg_dump)
RUN apt-get install -y wget
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
RUN apt-get install -y postgresql-client-14
WORKDIR /app WORKDIR /app
RUN mkdir -p lnbits/data
COPY . . COPY . .
RUN mkdir data
RUN poetry config virtualenvs.create false RUN poetry config virtualenvs.create false
RUN poetry install --only main RUN poetry install --only main
RUN poetry run python tools/build.py
ENV LNBITS_PORT="5000" ENV LNBITS_PORT="5000"
ENV LNBITS_HOST="0.0.0.0" ENV LNBITS_HOST="0.0.0.0"