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