wethepeople.win/Dockerfile
2021-01-23 19:51:11 -05:00

9 lines
210 B
Docker

FROM perl:5.22
RUN cpanm Mojolicious
WORKDIR /opt
COPY public/ ./public/
COPY templates/ ./templates/
COPY wethepeople.pl .
ENV MOJO_REVERSE_PROXY=1
CMD ["perl", "wethepeople.pl", "daemon", "-m", "production"]