LGBModelApi / Dockerfile
MrZaper's picture
Add application file
aa42d26
Raw
History Blame Contribute Delete
192 Bytes
FROM python:3.10
WORKDIR /LGBModelApi
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]