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: 9a4f97bda88978dcd3d35dffc8876fa22863db3c (plain)
1
2
3
4
5
6
7
8
FROM alpine:latest
ENV LANG=en_US.UTF-8 LC_ALL=C.UTF-8 LANGUAGE=en_US.UTF-8
RUN apk --update add perl perl-app-cpanminus make unzip
RUN apk add perl-libwww perl-lwp-protocol-https perl-http-cookies perl-html-parser perl-getopt-long-descriptive perl-archive-zip \
    --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
RUN ["cpanm", "MP3::Tag", "File::Util"]
COPY src /src
ENTRYPOINT [ "/src/ya.pl" ]