PostText/Dockerfile

25 lines
459 B
Docker
Raw Normal View History

2023-12-10 02:21:31 +00:00
FROM docker.io/perl:5.36
2023-04-25 19:10:31 +00: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
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"]