29 lines
850 B
Docker
29 lines
850 B
Docker
FROM breakdowns/mega-sdk-python:latest
|
|
|
|
WORKDIR /usr/src/app
|
|
RUN chmod 777 /usr/src/app
|
|
|
|
RUN apt-get -qq update && \
|
|
apt-get install -y software-properties-common && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
apt-add-repository non-free && \
|
|
apt-get -qq update && \
|
|
apt-get -qq install -y p7zip-full mediainfo p7zip-rar aria2 curl pv jq ffmpeg locales python3-lxml && \
|
|
apt-get purge -y software-properties-common
|
|
|
|
COPY requirements.txt .
|
|
COPY extract /usr/local/bin
|
|
COPY pextract /usr/local/bin
|
|
RUN chmod +x /usr/local/bin/extract && chmod +x /usr/local/bin/pextract
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
|
|
locale-gen
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
COPY . .
|
|
COPY .netrc /root/.netrc
|
|
RUN chmod +x aria.sh
|
|
|
|
CMD ["bash","start.sh"]
|