Spaces:
Running
Running
FROM selenium/node-chrome | |
ARG G4F_VERSION | |
ENV G4F_VERSION $G4F_VERSION | |
ENV SE_SCREEN_WIDTH 1850 | |
ENV G4F_DIR /app | |
ENV G4F_LOGIN_URL http://localhost:7900/?autoconnect=1&resize=scale&password=secret | |
# RUN useradd -m -u 1000 user | |
USER root | |
# ENV PATH="/home/user/.local/bin:$PATH" | |
# # ^ when run as `user`, pip installs executables there | |
RUN if [ "$G4F_VERSION" = "" ] ; then \ | |
apt-get -qqy update && \ | |
apt-get -qqy install git \ | |
; fi | |
RUN apt-get -qqy update \ | |
&& apt-get -qqy upgrade \ | |
&& apt-get -qyy autoremove \ | |
&& apt-get -qqy install python3 python-is-python3 pip \ | |
&& apt-get -qyy remove openjdk-11-jre-headless \ | |
&& apt-get -qyy autoremove \ | |
&& apt-get -qyy clean \ | |
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | |
# RUN chown "${SEL_UID}:${SEL_GID}" $HOME/.local | |
RUN chmod -R 777 /app | |
WORKDIR /app | |
COPY requirements.txt /app | |
RUN pip install --break-system-packages -r requirements.txt | |
# COPY --chown=user ./requirements.txt requirements.txt | |
# RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
# ADD --chown=$SEL_UID:$SEL_GID g4f $G4F_DIR/g4f | |
# COPY --chown=user . /app | |
CMD ["python", "-m", "g4f" ,"--port" ,"7860", "--debug"] | |