Spaces:
Runtime error
Runtime error
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 |