-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
47 lines (43 loc) · 975 Bytes
/
Dockerfile
File metadata and controls
47 lines (43 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM debian:trixie
RUN apt-get update && apt-get install -y \
cpanminus \
file \
git \
libcapture-tiny-perl \
libcgi-pm-perl \
libdata-page-perl \
libdate-calc-perl \
libdate-manip-perl \
libdbd-mysql-perl \
libdevel-cover-perl \
libfile-slurp-perl \
libipc-run-perl \
libjson-xs-perl \
liblog-log4perl-perl \
liblwp-mediatypes-perl \
libmail-sendmail-perl \
libnet-http-perl \
libperl-critic-perl \
libtemplate-perl \
libtest-exception-perl \
libtest-lwp-useragent-perl \
libtimedate-perl \
libtry-tiny-perl \
liburi-encode-perl \
libuuid-perl \
libuuid-tiny-perl \
libwww-perl \
libxml-libxml-perl \
libyaml-perl \
libmarc-record-perl \
libmarc-xml-perl \
nodejs \
npm \
perl
RUN cpanm --notest \
Devel::Cover::Report::Coveralls \
MARC::Record::MiJ
ENV SDRROOT /htapps/babel
ENV ROOTDIR "${SDRROOT}/crms"
WORKDIR $ROOTDIR
LABEL org.opencontainers.image.source="https://github.com/hathitrust/crms"