Product-rec / Dockerfile
Ujjwal-32's picture
Upload 5 files
0c1233f verified
raw
history blame contribute delete
152 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]