Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
FROM ghcr.io/open-webui/open-webui:main
|
2 |
|
|
|
|
|
|
|
3 |
COPY sync_data.sh sync_data.sh
|
4 |
|
5 |
RUN chmod -R 777 ./data && \
|
|
|
1 |
FROM ghcr.io/open-webui/open-webui:main
|
2 |
|
3 |
+
RUN apt-get update && apt-get install -y python3 python3-pip
|
4 |
+
RUN pip3 install --no-cache-dir huggingface_hub
|
5 |
+
|
6 |
COPY sync_data.sh sync_data.sh
|
7 |
|
8 |
RUN chmod -R 777 ./data && \
|