unip-controller/build/Dockerfile
2025-04-15 20:56:15 +03:00

27 lines
No EOL
702 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ============================================================
# Система: Единая библиотека, Центр ИИ НИУ ВШЭ
# Модуль: Утилиты
# Авторы: Полежаев В.А., Хританков А.С.
# Дата создания: 2024 г.
# ============================================================
FROM python:3.10-slim-buster
USER root
WORKDIR /
ADD ./controller/requirements.txt /controller/requirements.txt
WORKDIR /controller
RUN pip install -r requirements.txt
ADD ./controller /controller
RUN useradd -m controller
RUN chown -R controller .
ENV PYTHONPATH "${PYTHONPATH}:/controller/src"
CMD kopf run ./src/main.py --verbose
USER controller