superkart-backend / Dockerfile
mukherjee78's picture
Add backend Flask API + Dockerfile + model
8d76f40
raw
history blame contribute delete
183 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY best_model.pkl .
EXPOSE 7860
CMD ["python", "app.py"]