swat-ml-api / Dockerfile
Ariadaikalam's picture
Upload 9 files
47ffedc verified
Raw
History Blame Contribute Delete
188 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
ENV PYTHONUNBUFFERED=1
CMD ["python", "ml_api.py"]