30 lines
1.2 KiB
Docker
30 lines
1.2 KiB
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# unrar comes from Debian bookworm non-free; postgresql-client is pinned to v16
|
|
# (matching the postgres:16 server) via the official PostgreSQL APT repo, so
|
|
# pg_dump produces PG16-native dumps that restore cleanly into the server.
|
|
RUN echo "deb http://deb.debian.org/debian bookworm non-free" >> /etc/apt/sources.list \
|
|
&& apt-get update && apt-get install -y --no-install-recommends \
|
|
curl ca-certificates gnupg \
|
|
&& install -d /usr/share/postgresql-common/pgdg \
|
|
&& curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc \
|
|
-o /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc \
|
|
&& echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] http://apt.postgresql.org/pub/repos/apt trixie-pgdg main" \
|
|
> /etc/apt/sources.list.d/pgdg.list \
|
|
&& apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
libmagic1 \
|
|
unrar \
|
|
postgresql-client-16 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
EXPOSE 8000
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|