-
Notifications
You must be signed in to change notification settings - Fork 8
/
Dockerfile.dev
19 lines (19 loc) · 1.62 KB
/
Dockerfile.dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM perl:5.34
RUN ["mkdir","/app"]
COPY ./ /app
WORKDIR /app
ENV DEBIAN_FRONTEND=noninteractive
ENV PGPASSWORD=mysecret
RUN ["apt-get","update"]
RUN ["apt-get","install","-y","cpanminus","liblua5.3-dev","gcc","g++","libdatetime-format-sqlite-perl","libtest-most-perl","libdatetime-set-perl"]
RUN ["apt-get","install","-y","libdbix-class-schema-loader-perl","libmagic-dev","postgresql-client","libpng-dev","libssl-dev","libpq-dev"]
RUN ["apt-get","install","-y","libjson-perl","libsession-token-perl","libnet-oauth2-authorizationserver-perl","libtext-csv-encoded-perl"]
RUN ["apt-get","install","-y","libcrypt-urandom-perl","libhtml-scrubber-perl","libtext-markdown-perl","libwww-form-urlencoded-xs-perl"]
RUN ["apt-get","install","-y","libstring-camelcase-perl","libmail-transport-perl","liblog-log4perl-perl","libplack-perl","libdbd-pg-perl"]
RUN ["apt-get","install","-y","libmail-message-perl","libmath-random-isaac-xs-perl","libdbix-class-helpers-perl","libtree-dagnode-perl"]
RUN ["apt-get","install","-y","libmath-round-perl","libdatetime-format-dateparse-perl","libwww-mechanize-perl","libdatetime-format-iso8601-perl"]
RUN ["apt-get","install","-y","libmoox-types-mooselike-perl","libmoox-singleton-perl","libpdf-table-perl","libdancer2-perl","liblist-compare-perl"]
RUN ["apt-get","install","-y","liburl-encode-perl","libtie-cache-perl","libhtml-fromtext-perl","libdata-compare-perl","libfile-bom-perl"]
RUN ["apt-get","install","-y","libalgorithm-dependency-perl","libdancer-plugin-auth-extensible-perl","libfile-libmagic-perl","postfix"]
RUN perl ./bin/output_cpanfile > cpanfile
RUN ["cpanm","--installdeps",".","--cpanfile","cpanfile","--notest"]