-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
48 lines (46 loc) · 1.42 KB
/
Dockerfile
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
48
FROM mcr.microsoft.com/devcontainers/base:buster
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends \
perl=5.28.1-6+deb10u1 \
cpanminus \
libalgorithm-diff-perl \
libalgorithm-diff-xs-perl \
libalgorithm-merge-perl \
libcgi-fast-perl \
libcgi-pm-perl \
libclass-accessor-perl \
libclass-isa-perl \
libencode-locale-perl \
libfcgi-perl \
libfile-fcntllock-perl \
libhtml-parser-perl \
libhtml-tagset-perl \
libhttp-date-perl \
libhttp-message-perl \
libio-html-perl \
libio-string-perl \
liblocale-gettext-perl \
liblwp-mediatypes-perl \
libparse-debianchangelog-perl \
libsub-name-perl \
libswitch-perl \
libtext-charwidth-perl \
libtext-iconv-perl \
libtext-wrapi18n-perl \
libtimedate-perl \
liburi-perl \
libscalar-list-utils-perl \
&& cpanm -S Carton \
# for Perl::LanguageServer
&& apt-get -y install --no-install-recommends \
libanyevent-perl \
libclass-refresh-perl \
libdata-dump-perl \
libio-aio-perl \
libjson-perl \
libmoose-perl \
libpadwalker-perl \
libscalar-list-utils-perl \
libcoro-perl \
&& cpanm Perl::LanguageServer \
&& rm -rf /var/lib/apt/lists/*