File: Dockerfile.pg

package info (click to toggle)
pgcopydb 0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 30,636 kB
  • sloc: ansic: 217,474; sql: 1,654; sh: 812; makefile: 365; python: 94
file content (9 lines) | stat: -rw-r--r-- 242 bytes parent folder | download
1
2
3
4
5
6
7
8
9
FROM postgres:13-bullseye

RUN apt-get update \
  && apt-get install -y --no-install-recommends \
      postgresql-13-wal2json \
      postgresql-13-partman \
      postgresql-13-postgis-3 \
      postgis \
    && rm -rf /var/lib/apt/lists/*