forked from InstaPy/InstaPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
79 lines (70 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
FROM ubuntu:16.04
MAINTAINER Grossmann Tim <[email protected]>
# Set env variables
ENV CHROME https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
ENV CRHOMEDRIVER http://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip
# Environment setup
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install \
apt-utils \
locales \
unzip \
sed \
python3-pip \
python3-dev \
build-essential \
libgconf2-4 \
libnss3-1d \
libxss1 \
libssl-dev \
libffi-dev \
xvfb \
wget \
libcurl3 \
gconf-service \
libasound2 \
libatk1.0-0 \
libcairo2 \
libcups2 \
libfontconfig1 \
libgdk-pixbuf2.0-0 \
libgtk2.0-0 \
libpango1.0-0 \
libxcomposite1 \
libxtst6 \
fonts-liberation \
libappindicator1 \
xdg-utils \
git \
&& pip3 install --upgrade pip \
&& locale-gen en_US.UTF-8 \
&& dpkg-reconfigure locales \
&& pip3 install --upgrade pip \
&& apt-get -f install
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Installing latest chrome
RUN cd ~ \
&& wget ${CHROME} \
&& dpkg -i google-chrome-stable_current_amd64.deb \
&& apt-get install -y -f \
&& rm google-chrome-stable_current_amd64.deb
# Cleanup
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Adding InstaPy
RUN git clone https://github.com/timgrossmann/InstaPy.git \
&& wget ${CRHOMEDRIVER} \
&& unzip chromedriver_linux64 \
&& mv chromedriver InstaPy/assets/chromedriver \
&& chmod +x InstaPy/assets/chromedriver \
&& chmod 755 InstaPy/assets/chromedriver \
&& cd InstaPy \
&& pip install . \
&& sed -ie 's/#self.display/self.display/g' instapy/instapy.py
# Copying the your quickstart file into the container and setting directory
COPY quickstart.py ./InstaPy
WORKDIR /InstaPy
CMD ["python3.5", "quickstart.py"]