mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-13 05:21:50 +00:00
Change config.local.py to config_local.py Fix 2AM Willard Moments™ Made a few errors last night that should be corrected.
8 lines
375 B
Docker
8 lines
375 B
Docker
FROM postgres:12
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y postgresql-plperl-12 \
|
|
&& apt-get install -y postgresql-plpython3-12 \
|
|
&& apt-get install -y libnet-ip-perl perl-net libnet-ldap-perl libnet-dns-perl libnet-snmp-perl libnet-server-mail-perl libcrypt-des-perl \
|
|
&& apt-get install -y libperl-dev build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|