FROM python:3.11-slim COPY . /recs_app WORKDIR /recs_app RUN pip install -r requirements.txt RUN export $(cat ./.env | xargs) EXPOSE 8000 CMD ["uvicorn", "recommendation_service:app", "--port", "8000", "--host", "0.0.0.0"]