From 72d64c99643f491cfc12f4b31a6873279ff74750 Mon Sep 17 00:00:00 2001 From: Daniel Bowling Date: Sat, 23 Jan 2021 00:51:51 -0500 Subject: [PATCH] Add Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile 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"]