File size: 1,945 Bytes
01fc671
 
 
 
665c292
 
a2dd620
 
665c292
 
 
 
 
 
 
 
 
 
 
01fc671
 
 
 
 
 
 
 
 
 
 
7b6027f
01fc671
 
 
 
 
 
 
c5c27d4
665c292
 
 
 
 
 
01fc671
 
 
 
665c292
 
 
 
 
 
 
 
01fc671
665c292
01fc671
 
665c292
 
01fc671
 
 
 
ddfbb10
01fc671
 
 
 
 
 
 
 
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
FROM selenium/node-chrome

ENV SE_SCREEN_WIDTH 1850
ENV PYTHONUNBUFFERED 1
ENV G4F_DIR /app
ENV G4F_LOGIN_URL http://localhost:7900/?autoconnect=1&resize=scale&password=secret
ARG G4F_VERSION
ENV G4F_VERSION ${G4F_VERSION}
ARG G4F_USER
ENV G4F_USER ${G4F_USER:-g4f}
ARG G4F_USER_ID
ENV G4F_USER_ID ${G4F_USER_ID:-1000}
ARG G4F_NO_GUI
ENV G4F_NO_GUI $G4F_NO_GUI
ENV HOME /home/$G4F_USER
ENV SE_DOWNLOAD_DIR $HOME/Downloads
ENV SEL_USER $G4F_USER
ENV SEL_UID $G4F_USER_ID
ENV SEL_GID $G4F_USER_ID

USER root

# Python packages
RUN apt-get -qqy update \
  && apt-get -qqy install \
    python3 \
    python-is-python3 \
    pip \
    git
    
RUN git clone https://github.com/xtekky/gpt4free.git /tmp/gpt4free

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

# Update entrypoint
COPY supervisor.conf /etc/supervisor/conf.d/selenium.conf
COPY supervisor-gui.conf /etc/supervisor/conf.d/gui.conf

# If no gui
RUN if [ "$G4F_NO_GUI" ] ; then \
  rm /etc/supervisor/conf.d/gui.conf \
  ; fi

# Change background image
RUN cp /tmp/gpt4free/docker/background.png /usr/share/images/fluxbox/ubuntu-light.png

# Add user
RUN groupadd -g $G4F_USER_ID $G4F_USER
RUN useradd -rm -G sudo -u $G4F_USER_ID -g $G4F_USER_ID $G4F_USER

# Fix permissions
RUN mkdir "${SE_DOWNLOAD_DIR}"
RUN chown "${G4F_USER_ID}:${G4F_USER_ID}" $SE_DOWNLOAD_DIR /var/run/supervisor /var/log/supervisor

# Switch user
USER $G4F_USER_ID

# Set the working directory in the container.
# Set the working directory in the container.
WORKDIR $G4F_DIR

# Copy the project's requirements file into the container.
RUN cp /tmp/gpt4free/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.
RUN cp -r /tmp/gpt4free/g4f /app/g4f

# Expose ports
EXPOSE 80 1337