www2.0/Dockerfile

38 lines
920 B
Docker
Raw Normal View History

2021-03-06 21:54:51 -05:00
FROM perl:5.32
# Dependency time
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install fortune-mod ruby
2021-03-06 21:54:51 -05:00
RUN cpanm CGI
RUN cpanm CGI::Carp
RUN cpanm Mojolicious
RUN cpanm Mojolicious::Plugin::CGI
RUN cpanm Number::Format
RUN cpanm Regexp::Common
# Version 0.106 of Getopt::Long::Descriptive won't build for me; as
# it's just a dependency for WebService::Mattermost anyways let's just
# go with 0.105 since we know that works
RUN cpanm RJBS/Getopt-Long-Descriptive-0.105.tar.gz
2021-03-06 21:54:51 -05:00
RUN cpanm WebService::Mattermost
RUN cpanm XML::LibXML
2021-03-06 23:33:36 -05:00
RUN gem install cgi
RUN gem install ipaddress
2021-03-06 21:54:51 -05:00
# Move it
WORKDIR /opt
COPY cgi-bin/ ./cgi-bin/
COPY public/ ./public/
COPY templates/ ./templates/
COPY .mmCreds.xml .
COPY .msg.bans .
COPY .name.bans .
2021-03-13 00:42:36 -05:00
COPY www-swagg.conf .
2021-03-06 21:54:51 -05:00
COPY www-swagg.pl .
# Finish setting up the environment
ENV MOJO_REVERSE_PROXY=1
# Send it
CMD ["perl", "www-swagg.pl", "daemon", "-m", "production"]