Keras
potato / Dockerfile
rishab1090's picture
Upload 8 files
66e5661 verified
raw
history blame contribute delete
195 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "10000"]