Update Dockerfile

This commit is contained in:
dvirlabs 2025-12-21 04:54:58 +02:00
parent 538f2cef71
commit 578fa1837b

View File

@ -5,10 +5,11 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
WORKDIR /app
# deps for psycopg2
# deps for psycopg2 and pg_dump/psql for backups
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
postgresql-client \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .