forked from xtekky/gpt4free
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'xtekky:main' into main
- Loading branch information
Showing
10 changed files
with
125 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
FROM python:slim-bookworm | ||
|
||
ARG G4F_VERSION | ||
ARG G4F_USER=g4f | ||
ARG G4F_USER_ID=1000 | ||
ARG PYDANTIC_VERSION=1.8.1 | ||
|
||
ENV G4F_VERSION $G4F_VERSION | ||
ENV G4F_USER $G4F_USER | ||
ENV G4F_USER_ID $G4F_USER_ID | ||
ENV G4F_DIR /app | ||
|
||
RUN apt-get update && apt-get upgrade -y \ | ||
&& apt-get install -y git \ | ||
&& apt-get install --quiet --yes --no-install-recommends \ | ||
build-essential \ | ||
# Add user and user group | ||
&& groupadd -g $G4F_USER_ID $G4F_USER \ | ||
&& useradd -rm -G sudo -u $G4F_USER_ID -g $G4F_USER_ID $G4F_USER \ | ||
&& mkdir -p /var/log/supervisor \ | ||
&& chown "${G4F_USER_ID}:${G4F_USER_ID}" /var/log/supervisor \ | ||
&& echo "${G4F_USER}:${G4F_USER}" | chpasswd \ | ||
&& python -m pip install --upgrade pip | ||
|
||
USER $G4F_USER_ID | ||
WORKDIR $G4F_DIR | ||
|
||
ENV HOME /home/$G4F_USER | ||
ENV PATH "${HOME}/.local/bin:${PATH}" | ||
|
||
# Create app dir and copy the project's requirements file into it | ||
RUN mkdir -p $G4F_DIR | ||
COPY requirements-min.txt $G4F_DIR | ||
COPY requirements-slim.txt $G4F_DIR | ||
|
||
# Upgrade pip for the latest features and install the project's Python dependencies. | ||
RUN pip install --no-cache-dir -r requirements-min.txt \ | ||
&& pip install --no-cache-dir --no-binary setuptools \ | ||
Cython==0.29.22 \ | ||
setuptools \ | ||
# Install PyDantic | ||
&& pip install \ | ||
-vvv \ | ||
--no-cache-dir \ | ||
--no-binary :all: \ | ||
--global-option=build_ext \ | ||
--global-option=-j8 \ | ||
pydantic==${PYDANTIC_VERSION} | ||
RUN cat requirements-slim.txt | xargs -n 1 pip install --no-cache-dir || true | ||
|
||
# Remove build packages | ||
RUN pip uninstall --yes \ | ||
Cython \ | ||
setuptools | ||
|
||
USER root | ||
|
||
# Clean up build deps | ||
RUN apt-get purge --auto-remove --yes \ | ||
build-essential \ | ||
&& apt-get clean \ | ||
&& rm --recursive --force /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
USER $G4F_USER_ID | ||
|
||
# Copy the entire package into the container. | ||
ADD --chown=$G4F_USER:$G4F_USER g4f $G4F_DIR/g4f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ pycryptodome | |
curl_cffi>=0.6.2 | ||
aiohttp | ||
certifi | ||
duckduckgo-search>=5.0 | ||
nest_asyncio | ||
werkzeug | ||
pillow | ||
|