www2.0/Dockerfile

29 lines
549 B
Docker
Raw Normal View History

FROM perl:5.32.1
2021-03-06 21:54:51 -05:00
# Move it
WORKDIR /opt
COPY cgi-bin/ ./cgi-bin/
COPY public/ ./public/
COPY templates/ ./templates/
COPY cpanfile .
2021-03-06 21:54:51 -05:00
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 .
# Dependency time
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install fortune-mod ruby
RUN cpanm --installdeps .
RUN gem install cgi
RUN gem install ipaddress
2021-03-06 21:54:51 -05:00
# Finish setting up the environment
ENV MOJO_REVERSE_PROXY=1
EXPOSE 3000
2021-03-06 21:54:51 -05:00
# Send it
CMD ["perl", "www-swagg.pl", "prefork", "-m", "production"]