-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
40 lines (36 loc) · 1.14 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
FROM alpine:3.19
LABEL maintainer="[email protected]"
ADD https://cpanmin.us/ /bin/cpanm
RUN chmod 0755 /bin/cpanm
ENV CRYPT_ARGON2_ARCH=NONE
RUN apk add --no-cache curl openssl perl perl-io-socket-ssl perl-net-ssleay wget && \
apk add --no-cache --virtual builddeps build-base perl-dev && \
/bin/cpanm -n -M https://cpan.metacpan.org \
Future::AsyncAwait \
Cpanel::JSON::XS \
Crypt::Eksblowfish \
Crypt::Passphrase \
Crypt::Passphrase::Argon2 \
Crypt::Passphrase::Bcrypt \
DBD::SQLite \
EV \
File::HomeDir \
File::ReadBackwards \
File::chdir \
HTTP::AcceptLanguage \
Hailo \
IO::Socket::Socks \
IRC::Utils \
Math::Calc::Parser \
Module::Install \
Net::LDAP \
Parse::IRC \
Syntax::Keyword::Try \
Text::Markdown \
Text::Markdown::Hoedown \
Time::Piece \
Unicode::UTF8 \
YAML::XS && \
apk del builddeps && \
rm -rf /root/.cpanm /var/cache/apk/*
CMD ["sh"]