diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1b3bdfd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM perl:5.22 +RUN cpanm Mojolicious +WORKDIR /opt +COPY public/ ./public/ +COPY templates/ ./templates/ +COPY wethepeople.pl . +CMD ["perl", "wethepeople.pl", "daemon", "-m", "production"]