Files
StatusServerBot/Dockerfile
2026-03-05 19:08:36 +07:00

11 lines
206 B
Docker

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