-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (22 loc) · 785 Bytes
/
Dockerfile
File metadata and controls
30 lines (22 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from ubuntu:16.04
RUN \
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
apt-get update && \
apt-get -y upgrade && \
apt-get install -y build-essential && \
apt-get install -y software-properties-common && \
apt-get install -y byobu curl git htop man unzip vim wget && \
apt-get install -y android-tools-adb python-requests python-pil python-pyquery python-numpy libsox-dev libsqlite3-dev libsqlcipher-dev
RUN \
apt-get -y install python-pip && \
pip install --upgrade pip && \
pip install pysqlcipher csscompressor && \
pip install --pre pysox
RUN \
rm -rf /var/lib/apt/lists/*
ENV HOME /root
WORKDIR /root
RUN git clone https://github.com/ppwwyyxx/wechat-dump.git
WORKDIR /root/wechat-dump
VOLUME /root/wechat-dump/workdir
CMD ["bash"]