Graphe des relations d'ajout au groupe entre les membres du Million Project
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. FROM python:3.11-slim
  2. RUN pip install poetry \
  3. && poetry config virtualenvs.create false
  4. RUN useradd --create-home --shell /bin/bash user
  5. USER user
  6. WORKDIR /home/user/million
  7. COPY pyproject.toml poetry.lock ./
  8. RUN poetry install --no-dev --no-interaction --no-ansi
  9. COPY million/ ./
  10. # CMD ["poetry", "run", "python", "million/scripts/script.py"]