Felix Fent
Fix ModuleNotFoundError: No module named huggingface_hub
7379f9d
raw
history blame contribute delete
267 Bytes
FROM huggingface/competitions:latest
ARG DEBIAN_FRONTEND=noninteractive
ARG DEBCONF_NOWARNINGS="yes"
ARG PIP_ROOT_USER_ACTION=ignore
RUN python -m pip install --no-cache-dir truckscenes-devkit
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1