Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/kaimi-io/yandex-music-download.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b108f2f82370afce4685767b8f05495721a7464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM ubuntu:14.04
ENV DEBIAN_FRONTEND=noninteractive LANG=en_US.UTF-8 LC_ALL=C.UTF-8 LANGUAGE=en_US.UTF-8
RUN apt-get update
RUN apt-get -y install perl cpanminus build-essential
COPY src /src
RUN ["cpanm", "Mozilla::CA"]
RUN ["cpanm", "LWP::UserAgent"]
RUN ["cpanm", "HTTP::Cookies"]
RUN ["cpanm", "HTML::Entities"]
RUN ["cpanm", "Archive::Zip"]
RUN ["cpanm", "MP3::Tag"]
RUN ["cpanm", "Getopt::Long::Descriptive"]
RUN apt-get -y  install libssl-dev
RUN ["cpanm", "--force","LWP::Protocol::https"]
ENTRYPOINT [ "/src/ya.pl" ]