Zonemaster-GUI
view release on metacpan or search on metacpan
docker/Dockerfile view on Meta::CPAN
MAINTAINER Michal TOMA <toma@nic.fr>
# Test push
# Install basic dependencies
RUN pwd
RUN zypper --non-interactive in make gcc git libopenssl-devel timezone postgresql-server postgresql-devel postgresql perl-DBD-Pg perl-App-cpanminus perl-aliased perl-Module-Install
RUN git config --global http.sslVerify false
# Prepare the PostgrSQL backend
RUN mkdir /postgresql_data
RUN chown postgres:postgres /postgresql_data
USER postgres
RUN initdb -D /postgresql_data
USER root
# Clone Backend and install dependencies
RUN git clone https://github.com/dotse/zonemaster-backend.git
#RUN cd /zonemaster-backend && git checkout tags/v1.0.3
RUN cd /zonemaster-backend && cpanm --installdeps --notest --quiet .
# Clone GUI and install dependencies
( run in 2.161 seconds using v1.01-cache-2.11-cpan-5511b514fd6 )