Skip to content

Commit

Permalink
non interactive install
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Mar 9, 2023
1 parent a8f534c commit 3fa4135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH"

# needed for backups postgresql-client version 14 (pg_dump)
RUN apt-get install wget
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 postgresql-client-14
RUN apt-get install -y postgresql-client-14

WORKDIR /app

Expand Down

0 comments on commit 3fa4135

Please sign in to comment.