forked from breenmachine/httpscreenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (14 loc) · 500 Bytes
/
Dockerfile
File metadata and controls
23 lines (14 loc) · 500 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# docker pull jesseosiecki/httpscreenshot
FROM ubuntu:20.04
MAINTAINER Jesse Osiecki <jesse@jjo.ninja>
RUN mkdir -p /etc/httpscreenshot
WORKDIR /etc/httpscreenshot
COPY . /etc/httpscreenshot/
RUN apt-get update
RUN apt-get install -y wget libfontconfig
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
ENTRYPOINT ["httpscreenshot"]