forked from DominicBreuker/stego-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
53 lines (44 loc) · 1.55 KB
/
Copy pathDockerfile
File metadata and controls
53 lines (44 loc) · 1.55 KB
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
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 \
atomicparsley
RUN pip3 install python-magic
RUN pip install tqdm
ENV DEBIAN_FRONTEND noninteractive
COPY install /tmp/install
RUN find /tmp/install -name '*.sh' -exec chmod a+x {} + && \
find /tmp/install -type f -executable -exec {} \; && \
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 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