From 46039f99e91658afba1a492d9c851e2b849fa821 Mon Sep 17 00:00:00 2001 From: John Locke Date: Fri, 28 Aug 2015 10:24:52 -0700 Subject: [PATCH] Change base to Perl:5, add CGI::Compile via cpan --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76e5fd4..97f7cdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:jessie +FROM perl:5 MAINTAINER Freelock john@freelock.com # Build time variables @@ -58,6 +58,9 @@ ENV POSTGRES_HOST postgres COPY start.sh /usr/bin/start.sh COPY update_ssmtp.sh /usr/bin/update_ssmtp.sh +RUN cpanm \ + CGI::Compile + RUN chown www-data /etc/ssmtp /etc/ssmtp/ssmtp.conf && \ chmod +x /usr/bin/update_ssmtp.sh /usr/bin/start.sh && \