nutri / Dockerfile
shantanu1777's picture
Upload 8 files
de3bdeb verified
Raw
History Blame Contribute Delete
238 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]