caption_api / Dockerfile
divyanshu1807gupta's picture
Update Dockerfile
e2a1861
raw
history blame contribute delete
No virus
270 Bytes
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"]