You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
321 B
6 lines
321 B
|
5 years ago
|
FROM centos:8
|
||
|
|
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
|
||
|
|
RUN dnf -qy module disable postgresql
|
||
|
|
RUN yum -y install epel-release && yum -y update && yum clean all
|
||
|
|
RUN yum install -y jemalloc jemalloc-devel postgresql10 libpqxx && yum clean all
|