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 |
- FROM python:3.11-buster
-
-
- RUN pip install poetry
-
- COPY pyproject.toml poetry.lock ./
- COPY ./data/DefaultMediaCountMapFile ./data/DefaultMediaCountMapFile
- COPY ./test ./test
-
- RUN poetry config virtualenvs.create false \
- && poetry install --no-interaction --no-ansi
|