caption_api / Dockerfile
divyanshu1807gupta's picture
Update Dockerfile
2ce8830
raw
history blame
162 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt/code/requirements.txt
RUN pip install -r /code/requirements.txt
EXPOSE 5000
CMD python ./caption_api.py