Add Dockerfile

This commit is contained in:
Daniel Bowling 2021-01-23 00:51:51 -05:00
parent 143a3f3efb
commit 72d64c9964

7
Dockerfile Normal file
View File

@ -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"]