Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
WORKDIR /code | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install -r /code/requirements.txt | |
COPY .. | |
CMD ["python","caption_api.py","--address","0.0.0.0","--port","7860","--allow-websocket-origin","divanshu1807gupta-caption-api.hf.space"] |