Graphe des relations d'ajout au groupe entre les membres du Million Project
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Dockerfile 354B

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"]