diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-03-16 22:31:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 22:31:01 +0100 |
commit | b4190878dc7d2507604c8558d525b228e1bf1207 (patch) | |
tree | bc74ddf88c273ceeb484243aca89e126c72b2b47 /docker | |
parent | Merge pull request #1716 from hlohaus/giga (diff) | |
parent | feat: arm64 (diff) | |
download | gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar.gz gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar.bz2 gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar.lz gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar.xz gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.tar.zst gpt4free-b4190878dc7d2507604c8558d525b228e1bf1207.zip |
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 88e21b18..8b2d5b7b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM selenium/node-chrome +FROM seleniarm/node-chromium ARG G4F_VERSION ARG G4F_USER=g4f @@ -81,10 +81,10 @@ WORKDIR $G4F_DIR COPY requirements.txt $G4F_DIR # Upgrade pip for the latest features and install the project's Python dependencies. -RUN pip install --upgrade pip && pip install -r requirements.txt +RUN pip install --break-system-packages --upgrade pip && 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 # Expose ports -EXPOSE 8080 1337
\ No newline at end of file +EXPOSE 8080 1337 |