Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -9,4 +9,9 @@ RUN apt-get -qqy update \
|
|
| 9 |
|
| 10 |
ENV G4F_IGNORED_PROVIDERS $G4F_IGNORED_PROVIDERS
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
CMD python -m g4f --port 7860 --debug --ignored-providers $G4F_IGNORED_PROVIDERS
|
|
|
|
| 9 |
|
| 10 |
ENV G4F_IGNORED_PROVIDERS $G4F_IGNORED_PROVIDERS
|
| 11 |
|
| 12 |
+
RUN pip install --break-system-packages --upgrade pip \
|
| 13 |
+
&& pip install --break-system-packages g4f[all] \
|
| 14 |
+
&& pip uninstall -y --break-system-packages \
|
| 15 |
+
pywebview plyer
|
| 16 |
+
|
| 17 |
CMD python -m g4f --port 7860 --debug --ignored-providers $G4F_IGNORED_PROVIDERS
|