Dockerfile.run_base 335 B

12345
  1. FROM centos:8
  2. RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
  3. RUN dnf -qy module disable postgresql
  4. RUN yum -y install epel-release && yum -y update && yum clean all
  5. RUN yum install -y jemalloc jemalloc-devel postgresql10 libpqxx libpqxx-devel && yum clean all