1# Dockerfile to generate Debian Sid build container for XMLTV
2
3FROM debian:sid
4
5MAINTAINER Nick Morrott <knowledgejunkie@gmail.com>
6
7RUN echo "deb http://deb.debian.org/debian unstable main" > /etc/apt/sources.list
8RUN apt-get update
9
10RUN apt-get -y install make \
11                       --no-install-recommends
12
13RUN apt-get -y install libarchive-zip-perl \
14                       libcgi-pm-perl \
15                       libdata-dump-perl \
16                       libdate-manip-perl \
17                       libdatetime-format-iso8601-perl \
18                       libdatetime-format-sqlite-perl \
19                       libdatetime-format-strptime-perl \
20                       libdatetime-perl \
21                       libdatetime-timezone-perl \
22                       libdbd-sqlite3-perl \
23                       libdbi-perl \
24                       libfile-chdir-perl \
25                       libfile-homedir-perl \
26                       libfile-slurp-perl \
27                       libfile-which-perl \
28                       libhtml-parser-perl \
29                       libhtml-tableextract-perl \
30                       libhtml-tree-perl \
31                       libhttp-cache-transparent-perl \
32                       libio-stringy-perl \
33                       libjson-perl \
34                       liblingua-en-numbers-ordinate-perl \
35                       liblingua-preferred-perl \
36                       liblinux-dvb-perl \
37                       liblist-moreutils-perl \
38                       liblog-tracemessages-perl \
39                       liblwp-protocol-https-perl \
40                       liblwp-useragent-determined-perl \
41                       libparse-recdescent-perl \
42                       libsoap-lite-perl \
43                       libterm-progressbar-perl \
44                       libterm-readkey-perl \
45                       libtext-bidi-perl \
46                       libtext-iconv-perl \
47                       libtext-kakasi-perl \
48                       libtk-tablematrix-perl \
49                       libtry-tiny-perl \
50                       libunicode-string-perl \
51                       libwww-mechanize-perl \
52                       libwww-perl \
53                       libxml-dom-perl \
54                       libxml-libxml-perl \
55                       libxml-libxslt-perl \
56                       libxml-parser-perl \
57                       libxml-simple-perl \
58                       libxml-treepp-perl \
59                       libxml-twig-perl \
60                       libxml-writer-perl \
61                       perl-tk \
62                       --no-install-recommends
63