summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
blob: 0c52940d5ec84908ad4e88f2c7fc9d2844ba4d82 (plain) (blame)
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
FROM selenium/node-chrome

ENV SE_SCREEN_WIDTH 1920
ENV G4F_LOGIN_URL http://localhost:7900/?autoconnect=1&resize=scale&password=secret
ENV PYTHONUNBUFFERED 1

USER root

# Python packages
RUN apt-get -qqy update \
  && apt-get -qqy install \
    python3 \
    python-is-python3 \
    pip

# Cleanup
RUN rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
  && apt-get -qyy autoremove \
  && apt-get -qyy clean

# Update entrypoint
COPY docker/supervisor.conf /etc/supervisor/conf.d/selenium.conf

# Change background image
COPY g4f.png /usr/share/images/fluxbox/ubuntu-light.png

# Switch user
USER 1200

# Set the working directory in the container.
WORKDIR /app

# Copy the project's requirements file into the container.
COPY requirements.txt /app/

# Upgrade pip for the latest features and install the project's Python dependencies.
RUN pip install --upgrade pip && pip install -r requirements.txt

# Copy the entire package into the container.
COPY g4f /app/g4f

# Expose ports
EXPOSE 80 1337