From 78c494c6240d5a76b99853ad4d8ab6b9df3b8884 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 27 Apr 2020 22:15:22 +0200 Subject: Add cpanfile and Dockerfile --- Dockerfile | 29 +++++++++++++++++++++++++++++ cpanfile | 12 ++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 Dockerfile create mode 100644 cpanfile 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"] diff --git a/cpanfile b/cpanfile new file mode 100644 index 0000000..49198e0 --- /dev/null +++ b/cpanfile @@ -0,0 +1,12 @@ +requires 'Cache'; +requires 'DateTime'; +requires 'DateTime::Format::Strptime'; +requires 'File::ShareDir'; +requires 'File::Slurp'; +requires 'GD'; +requires 'Module::Build'; +requires 'Mojolicious'; +requires 'Mojolicious::Plugin::BrowserDetect'; +requires 'Travel::Status::DE::EFA'; +requires 'Travel::Status::DE::HAFAS'; +requires 'Travel::Status::DE::URA'; -- cgit v1.2.3