imagerecogntion / Dockerfile
pavan1221's picture
Upload 5 files
eb8e7be verified
raw
history blame contribute delete
175 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]