File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,15 @@ FROM lzzy12/mega-sdk-python:latest
2
2
3
3
WORKDIR /usr/src/app
4
4
RUN chmod 777 /usr/src/app
5
+
5
6
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
+
10
14
COPY requirements.txt .
11
15
COPY extract /usr/local/bin
12
16
RUN chmod +x /usr/local/bin/extract
@@ -22,5 +26,3 @@ COPY netrc /root/.netrc
22
26
RUN chmod +x aria.sh
23
27
24
28
CMD ["bash" ,"start.sh" ]
25
-
26
-
You can’t perform that action at this time.
0 commit comments