key-text-image-finder / Dockerfile
MarioPrzBasto's picture
Add application file
51c00f9
raw
history blame
169 Bytes
FROM python:3.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]