forked from breenmachine/httpscreenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (13 loc) · 478 Bytes
/
Dockerfile
File metadata and controls
21 lines (13 loc) · 478 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# docker pull andmyhacks/httpscreenshot
FROM ubuntu:latest
MAINTAINER Keith Hoodlet <keith@attackdriven.io>
RUN mkdir -p /etc/httpscreenshot
WORKDIR /etc/httpscreenshot
COPY . /etc/httpscreenshot/
RUN apt-get update
RUN apt-get install -y wget libfontconfig vim
RUN ./install-dependencies.sh
RUN chmod +x httpscreenshot.py
RUN ln -s /etc/httpscreenshot/httpscreenshot.py /usr/bin/httpscreenshot
RUN mkdir -p /etc/httpscreenshot/images
WORKDIR /etc/httpscreenshot/images