Skip to content

Commit 302db2d

Browse files
committedOct 18, 2020
Revert "Fixed Dockerfile"
This reverts commit 121fb52.
1 parent b4ad6e2 commit 302db2d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed
 

‎Dockerfile

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@ FROM lzzy12/mega-sdk-python:latest
22

33
WORKDIR /usr/src/app
44
RUN chmod 777 /usr/src/app
5+
56
RUN apt-get -qq update && \
6-
DEBIAN_FRONTEND="noninteractive" apt-get -qq install -y tzdata aria2 git python3 python3-pip \
7-
locales python3-lxml \
8-
curl pv jq ffmpeg \
9-
p7zip-full p7zip-rar
7+
apt-get install -y software-properties-common && \
8+
rm -rf /var/lib/apt/lists/* && \
9+
apt-add-repository non-free && \
10+
apt-get -qq update && \
11+
apt-get -qq install -y p7zip-full p7zip-rar aria2 curl pv jq ffmpeg locales python3-lxml && \
12+
apt-get purge -y software-properties-common
13+
1014
COPY requirements.txt .
1115
COPY extract /usr/local/bin
1216
RUN chmod +x /usr/local/bin/extract
@@ -22,5 +26,3 @@ COPY netrc /root/.netrc
2226
RUN chmod +x aria.sh
2327

2428
CMD ["bash","start.sh"]
25-
26-

0 commit comments

Comments
 (0)