Начало. Дз по первому уроку

This commit is contained in:
2024-02-14 23:48:18 +03:00
parent 154c1a87e7
commit 062caa416d
11 changed files with 1021 additions and 2 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.10-slim
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN mkdir -p /usr/src/tg_bot
WORKDIR /usr/src/tg_bot
COPY ./poetry.lock .
COPY ./pyproject.toml .
RUN poetry install --no-root