Movie-API / Dockerfile
VishalBhagat01's picture
Create Dockerfile
b69c3d0 verified
raw
history blame contribute delete
244 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy everything (including movies.pkl + similarity.pkl)
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]