PostText/Dockerfile

28 lines
584 B
Docker
Raw Normal View History

2023-12-09 21:21:31 -05:00
FROM docker.io/perl:5.36
2023-04-25 15:10:31 -04:00
# Move it
WORKDIR /opt
COPY lib/ ./lib/
COPY migrations/ ./migrations/
COPY public/ ./public/
COPY t/ ./t/
COPY templates/ ./templates/
COPY script/ ./script/
COPY cpanfile .
COPY post_text.conf .
# Dependency time
RUN apt-get update
RUN apt-get -y upgrade
2023-06-15 11:04:47 -04:00
# Work around for test failing due to headers being lowercase now that
# cpan.org is on HTTP/2
2024-06-25 13:08:13 -04:00
#RUN cpanm --notest Net::HTTP
2023-04-25 15:10:31 -04:00
RUN cpanm --installdeps .
# Finish setting up the environment
ENV MOJO_REVERSE_PROXY=1
EXPOSE 3000
# Send it
CMD ["perl", "script/post_text", "prefork", "-m", "production"]