summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-04-27 22:15:22 +0200
committerDaniel Friesel <derf@finalrewind.org>2020-04-27 22:15:22 +0200
commit78c494c6240d5a76b99853ad4d8ab6b9df3b8884 (patch)
treec7fabcace8b1c96f22821c7c7b7a88d7dd64a960 /Dockerfile
parent75d5a9234353d50d90f853175bf9af5b41d42044 (diff)
Add cpanfile and Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..608bbbf
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,29 @@
+FROM perl:5.30-slim
+
+ARG DEBIAN_FRONTEND=noninteractive
+
+COPY . /app
+WORKDIR /app
+
+RUN rm -rf public \
+ && apt-get update \
+ && apt-get -y --no-install-recommends install ca-certificates curl gcc git libc6-dev libdb5.3 libdb5.3-dev libgd3 libgd-dev libssl1.1 libssl-dev libxml2 libxml2-dev make zlib1g-dev \
+ && cpanm -n --no-man-pages --installdeps . \
+ && perl Build.PL \
+ && perl Build \
+ && perl Build manifest \
+ && perl Build install \
+ && rm -rf ~/.cpanm \
+ && apt-get -y purge curl gcc libc6-dev libdb5.3-dev libgd-dev libssl-dev libxml2-dev make zlib1g-dev \
+ && apt-get -y autoremove \
+ && apt-get -y clean \
+ && rm -rf /var/cache/apt/* /var/lib/apt/lists/*
+
+RUN ln -sf ../ext-templates/imprint.html.ep templates/imprint.html.ep \
+ && ln -sf ../ext-templates/privacy.html.ep templates/privacy.html.ep
+
+COPY public /app/public/
+
+EXPOSE 8091
+
+CMD ["hypnotoad", "-f", "index.pl"]