wethepeople.win/Dockerfile

8 lines
185 B
Docker
Raw Normal View History

2021-01-23 00:51:51 -05:00
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"]