You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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