2 parents 9f040cf + c897dc1 commit 888faafCopy full SHA for 888faaf
1 file changed
Dockerfile
@@ -0,0 +1,21 @@
1
+# docker pull andmyhacks/httpscreenshot
2
+
3
+FROM ubuntu:latest
4
5
+MAINTAINER Keith Hoodlet <keith@attackdriven.io>
6
7
+RUN mkdir -p /etc/httpscreenshot
8
+WORKDIR /etc/httpscreenshot
9
10
+COPY . /etc/httpscreenshot/
11
12
+RUN apt-get update
13
+RUN apt-get install -y wget libfontconfig vim
14
15
+RUN ./install-dependencies.sh
16
17
+RUN chmod +x httpscreenshot.py
18
+RUN ln -s /etc/httpscreenshot/httpscreenshot.py /usr/bin/httpscreenshot
19
20
+RUN mkdir -p /etc/httpscreenshot/images
21
+WORKDIR /etc/httpscreenshot/images
0 commit comments