Spaces:
Build error
Build error
File size: 294 Bytes
1c75c98 |
1 2 3 4 5 6 7 8 |
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"]
|