IIS/assets/recsys/service/features/Dockerfile

9 строки
194 B
Docker

FROM python:3.11-slim
COPY . /features_app
WORKDIR /features_app
RUN pip install -r requirements.txt
EXPOSE 8010
CMD ["uvicorn", "feature_service:app", "--port", "8010", "--host", "0.0.0.0"]