mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
15 lines
489 B
Docker
15 lines
489 B
Docker
# Runs upgrade and host-mode backup-restore tests (tests 1-5). Needs
|
|
# full PostgreSQL server for backup-restore lifecycle tests.
|
|
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates curl gnupg2 postgresql-common && \
|
|
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y && \
|
|
apt-get install -y --no-install-recommends \
|
|
postgresql-17 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /tmp
|
|
ENTRYPOINT []
|