e2e-driving-navhard / Dockerfile
GihhArwtw's picture
[major] use local competitions package instead; error message for repo not found issue
ce4cf4a
raw
history blame contribute delete
197 Bytes
FROM huggingface/competitions:latest
RUN pip uninstall competitions -y
COPY --chown=1000:1000 . /app/
RUN pip install -e .
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1