superkart-backend / Dockerfile
vksptk's picture
Upload 4 files
3b28094 verified
raw
history blame contribute delete
247 Bytes
FROM python:3.10-slim
WORKDIR /code
# Install dependencies
COPY requirements.txt /code/
RUN pip install --no-cache-dir -r requirements.txt
# Copy model and app
COPY best_model.pkl /code/
COPY app.py /code/
EXPOSE 7860
CMD ["python", "app.py"]