Завершена подготовка к миграции проекта в docker контейнер

This commit is contained in:
2025-08-20 23:20:27 +07:00
parent b69a5bfc45
commit fde4b9e721
10 changed files with 147 additions and 34 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3
WORKDIR /usr/src/economy-bot
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "src/CoreFun.py" ]