get-around-api / Dockerfile.api
klakenyuo's picture
nginx
7677098
Raw
History Blame Contribute Delete
155 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY api /code
COPY model /code/model
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]