caption_api / Dockerfile
divyanshu1807gupta's picture
Update Dockerfile
a7fde35
raw
history blame
279 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
EXPOSE 5000
CMD ["python","/code/caption_api.py","--address","0.0.0.0","--port","7860","--allow-websocket-origin","divanshu1807gupta-caption-api.hf.space"]