forked from DominicBreuker/stego-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
53 lines (46 loc) · 1.58 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
FROM debian:stretch-20170907
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y apt-utils \
forensics-all \
foremost \
binwalk \
exiftool \
outguess \
pngtools \
pngcheck \
stegosuite \
git \
hexedit \
python3-pip \
python-pip \
autotools-dev \
automake \
libevent-dev \
bsdmainutils \
ffmpeg \
crunch \
cewl \
sonic-visualiser \
xxd \
atomicparsley && \
pip3 install python-magic && \
pip install tqdm
COPY install /tmp/install
RUN chmod a+x /tmp/install/*.sh && \
for i in /tmp/install/*.sh;do echo $i && $i;done && \
rm -rf /tmp/install
# Use this section to try new installation scripts.
# All previous steps will be cached
#
# COPY install_dev /tmp/install
# RUN find /tmp/install -name '*.sh' -exec chmod a+x {} + && \
# for f in $(ls /tmp/install/* | sort );do /bin/sh $f;done && \
# rm -rf /tmp/install
COPY examples /examples
COPY scripts /opt/scripts
RUN find /opt/scripts -name '*.sh' -exec chmod a+x {} + && \
find /opt/scripts -name '*.py' -exec chmod a+x {} +
ENV PATH="/opt/scripts:${PATH}"
WORKDIR /data