Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011
  1. FROM python:3.11-buster
  2. RUN pip install poetry
  3. COPY pyproject.toml poetry.lock ./
  4. COPY ./million ./million
  5. COPY ./test ./test
  6. RUN poetry config virtualenvs.create false \
  7. && poetry install --no-interaction --no-ansi