/
NeonBite
/
big-data-4
Обзор
Документация
Войти
/
NeonBite
/
big-data-4
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
modelcmp.Dockerfile
14 строк
310 B
NeonBite
working on featstore
24 ноя 2025, 12:59
24 ноя 2025, 12:59
20855bb
Код
Авторство
О чём код?
FROM python:3.12-slim WORKDIR /app COPY ./.git/ /app/.git/ COPY ./model-cmp/main.py /app/main.py COPY ./model-cmp/requirements.txt /app/requirements.txt RUN apt-get update \ && apt-get install -y --no-install-recommends git RUN pip install --no-cache-dir -r requirements.txt CMD ["python", "main.py"]