proxstar/HACKING/proxstar-postgres/Dockerfile

13 lines
686 B
Text
Raw Normal View History

FROM postgres:12
RUN apt-get update \
2021-10-16 02:17:06 +00:00
&& apt-get install -y postgresql-plperl-12 postgresql-plpython3-12 libnet-ip-perl libnet-ldap-perl libnet-dns-perl libnet-snmp-perl libnet-server-mail-perl libcrypt-des-perl build-essential cpanminus curl \
&& rm -rf /var/lib/apt/lists/* \
&& cpanm Data::Validate::Domain \
&& apt-get remove -y build-essential
#COPY ./schema/large.sql /docker-entrypoint-initdb.d/ # Woa there, pal; That's a lot of S C H E M A.
# I volunteer as tribute. DM me if this breaks.
2022-06-26 00:44:19 +00:00
#RUN curl https://csh.rit.edu/~wilnil/storage/proxstar-postgres/large.sql -o /docker-entrypoint-initdb.d/large.sql
COPY large.sql /docker-entrypoint-initdb.d/large.sql