text-classification / Dockerfile
manue
Remove unused environment variable and improve error handling in analysis endpoint
7e8513d
raw
history blame contribute delete
151 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]