tracklight / Dockerfile
mys's picture
Upload folder using huggingface_hub
1c75c98 verified
raw
history blame contribute delete
294 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY ./tracklight_server /app/tracklight_server
RUN pip install "tracklight @ git+https://github.com/your_username/your_repo.git" # Replace with your repo
EXPOSE 7860
CMD ["uvicorn", "tracklight_server.main:app", "--host", "0.0.0.0", "--port", "7860"]