mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Update base image of main docker image
This commit is contained in:
parent
09f8258fa7
commit
036d41b9f4
7 changed files with 25 additions and 81 deletions
|
|
@ -1,26 +1,11 @@
|
|||
FROM seleniarm/node-chromium
|
||||
FROM selenium/node-chrome
|
||||
|
||||
ARG G4F_VERSION
|
||||
ARG G4F_USER=g4f
|
||||
ARG G4F_USER_ID=1000
|
||||
ARG G4F_NO_GUI
|
||||
ARG G4F_PASS=secret
|
||||
|
||||
ENV G4F_VERSION $G4F_VERSION
|
||||
ENV G4F_USER $G4F_USER
|
||||
ENV G4F_USER_ID $G4F_USER_ID
|
||||
ENV G4F_NO_GUI $G4F_NO_GUI
|
||||
|
||||
ENV SE_SCREEN_WIDTH 1850
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
ENV G4F_DIR /app
|
||||
ENV G4F_LOGIN_URL http://localhost:7900/?autoconnect=1&resize=scale&password=$G4F_PASS
|
||||
ENV HOME /home/$G4F_USER
|
||||
ENV PATH $PATH:$HOME/.local/bin
|
||||
ENV SE_DOWNLOAD_DIR $HOME/Downloads
|
||||
ENV SEL_USER $G4F_USER
|
||||
ENV SEL_UID $G4F_USER_ID
|
||||
ENV SEL_GID $G4F_USER_ID
|
||||
ENV G4F_LOGIN_URL http://localhost:7900/?autoconnect=1&resize=scale&password=secret
|
||||
|
||||
USER root
|
||||
|
||||
|
|
@ -43,30 +28,15 @@ RUN apt-get -qqy update \
|
|||
# Update entrypoint
|
||||
COPY docker/supervisor.conf /etc/supervisor/conf.d/selenium.conf
|
||||
COPY docker/supervisor-api.conf /etc/supervisor/conf.d/api.conf
|
||||
COPY docker/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
|
||||
COPY docker/background.png /usr/share/images/fluxbox/ubuntu-light.png
|
||||
|
||||
# Add user, fix permissions
|
||||
RUN groupadd -g $G4F_USER_ID $G4F_USER \
|
||||
&& useradd -rm -G sudo -u $G4F_USER_ID -g $G4F_USER_ID $G4F_USER \
|
||||
&& echo "${G4F_USER}:${G4F_PASS}" | chpasswd \
|
||||
&& mkdir "${SE_DOWNLOAD_DIR}" \
|
||||
&& chown "${G4F_USER_ID}:${G4F_USER_ID}" $SE_DOWNLOAD_DIR /var/run/supervisor /var/log/supervisor \
|
||||
&& chown "${G4F_USER_ID}:${G4F_USER_ID}" -R /opt/bin/ /usr/bin/chromedriver /opt/selenium/
|
||||
RUN chown "${SEL_UID}:${SEL_GID}" $HOME/.local
|
||||
|
||||
# Switch user
|
||||
USER $G4F_USER_ID
|
||||
|
||||
# Set VNC password
|
||||
RUN mkdir -p ${HOME}/.vnc \
|
||||
&& x11vnc -storepasswd ${G4F_PASS} ${HOME}/.vnc/passwd
|
||||
USER $SEL_UID
|
||||
|
||||
# Set the working directory in the container.
|
||||
WORKDIR $G4F_DIR
|
||||
|
|
@ -76,14 +46,10 @@ COPY requirements.txt $G4F_DIR
|
|||
|
||||
# Upgrade pip for the latest features and install the project's Python dependencies.
|
||||
RUN pip install --break-system-packages --upgrade pip \
|
||||
&& pip install --break-system-packages -r requirements.txt \
|
||||
&& pip install --break-system-packages \
|
||||
undetected-chromedriver selenium-wire \
|
||||
&& pip uninstall -y --break-system-packages \
|
||||
pywebview
|
||||
&& pip install --break-system-packages -r requirements.txt
|
||||
|
||||
# Copy the entire package into the container.
|
||||
ADD --chown=$G4F_USER:$G4F_USER g4f $G4F_DIR/g4f
|
||||
ADD --chown=$SEL_UID:$SEL_GID g4f $G4F_DIR/g4f
|
||||
|
||||
# Expose ports
|
||||
EXPOSE 8080 1337 7900
|
||||
EXPOSE 8080 7900
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[program:g4f-api]
|
||||
priority=15
|
||||
command=python -m g4f.cli api
|
||||
command=python -m g4f --port 8080 --debug
|
||||
directory=/app
|
||||
stopasgroup=true
|
||||
autostart=true
|
||||
|
|
|
|||
|
|
@ -1,12 +0,0 @@
|
|||
[program:g4f-gui]
|
||||
priority=15
|
||||
command=python -m g4f.cli gui -debug
|
||||
directory=/app
|
||||
stopasgroup=true
|
||||
autostart=true
|
||||
autorestart=true
|
||||
|
||||
;Logs (all Hub activity redirected to stdout so it can be seen through "docker logs"
|
||||
redirect_stderr=true
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
Loading…
Add table
Add a link
Reference in a new issue