Update Dockerfile

This commit is contained in:
simonmcnair 2025-03-24 22:03:43 +00:00 committed by GitHub
parent fe62a0ff0b
commit a740f9da6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,8 +80,10 @@ RUN pip install --upgrade typing-extensions
RUN if [ -d "/opt/conda/lib/python3.10" ]; then \ RUN if [ -d "/opt/conda/lib/python3.10" ]; then \
echo Python 3.10 detected; \
sed -i 's/in_app_dir = .*/in_app_dir = True/g' /opt/conda/lib/python3.10/site-packages/gradio/routes.py ;\ sed -i 's/in_app_dir = .*/in_app_dir = True/g' /opt/conda/lib/python3.10/site-packages/gradio/routes.py ;\
elif [ -d "/opt/conda/lib/python3.11" ]; then \ elif [ -d "/opt/conda/lib/python3.11" ]; then \
echo Python 3.11 detected; \
sed -i 's/in_app_dir = .*/in_app_dir = True/g' /opt/conda/lib/python3.11/site-packages/gradio/routes.py ;\ sed -i 's/in_app_dir = .*/in_app_dir = True/g' /opt/conda/lib/python3.11/site-packages/gradio/routes.py ;\
fi && \ fi && \
# mv ${ROOT}/style.css ${ROOT}/user.css && \ # mv ${ROOT}/style.css ${ROOT}/user.css && \