Files
PrimoStoryBot/Dockerfile
2025-05-20 09:12:05 +07:00

11 lines
232 B
Docker

FROM mwalbeck/python-poetry:2.1-3.11
WORKDIR /PostBot
COPY pyproject.toml poetry.lock ./
RUN poetry install --no-interaction --no-root --only main
COPY ../../../../Desktop/PostBot .
CMD ["poetry", "run", "python", "-m", "main"]