Spaces:
Sleeping
Sleeping
File size: 238 Bytes
2997ab5 09961ea 1b014cd 09961ea 1b014cd 2997ab5 1b014cd 2997ab5 f932543 2997ab5 09961ea 2997ab5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.8-slim
WORKDIR /app
COPY main.py /app/
COPY model.h5 /app/model/
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|