Докер образ

This commit is contained in:
2026-03-05 19:08:36 +07:00
parent 70afc533e1
commit 8353642616

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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"]