forked from MobSF/Mobile-Security-Framework-MobSF
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
83 lines (68 loc) · 2.2 KB
/
Dockerfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#Base image
FROM ubuntu:17.04
#Labels and Credits
LABEL \
name="MobSF" \
author="Ajin Abraham <[email protected]>" \
maintainer="Ajin Abraham <[email protected]>" \
contributor="OscarAkaElvis <[email protected]>" \
description="Mobile Security Framework is an intelligent, all-in-one open source mobile application (Android/iOS/Windows) automated pen-testing framework capable of performing static, dynamic analysis and web API testing"
#Environment vars
ENV DEBIAN_FRONTEND="noninteractive"
ENV PDFGEN_PKGFILE="wkhtmltox-0.12.4_linux-generic-amd64.tar.xz"
ENV PDFGEN_URL="https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/${PDFGEN_PKGFILE}"
#Update the repository sources list
RUN apt update -y
#Install Required Libs
RUN apt install -y \
build-essential \
libssl-dev \
libffi-dev \
libxml2-dev \
libxslt1-dev
#Install Oracle JDK 8
RUN apt install -y software-properties-common && \
add-apt-repository ppa:webupd8team/java -y && \
apt update && \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \
apt install -y oracle-java8-installer
#Install Python 2.7, pip
RUN \
apt install -y \
python \
python-dev \
python-pip && \
pip install --upgrade pip
#Install sqlite3 client and pdf generator needed dependencies
RUN \
apt install -y \
sqlite3 \
fontconfig-config \
libjpeg-turbo8 \
fontconfig \
xorg
#Install wkhtmltopdf for PDF Reports
WORKDIR /tmp
RUN wget ${PDFGEN_URL} && \
tar xvf ${PDFGEN_PKGFILE} && \
cp -r /tmp/wkhtmltox/* /usr/local/
#Add MobSF master
COPY . /root/Mobile-Security-Framework-MobSF
#Enable Use Home Directory
WORKDIR /root/Mobile-Security-Framework-MobSF/MobSF
RUN sed -i 's/USE_HOME = False/USE_HOME = True/g' settings.py
#Kali fix to support 32 bit execution
RUN ./kali_fix.sh
#Install Dependencies
WORKDIR /root/Mobile-Security-Framework-MobSF
RUN pip install -r requirements.txt
#Cleanup
RUN \
apt clean && \
apt autoclean && \
apt autoremove
RUN rm -rf /var/lib/apt/lists/* /tmp/* > /dev/null 2>&1
#Expose MobSF Port
EXPOSE 8000
#Run MobSF
CMD ["python","manage.py","runserver","0.0.0.0:8000"]