4 Commits
0.0.1 ... 0.0.3

Author SHA1 Message Date
330d34702f dockerfile fix
All checks were successful
Build and Push Docker Image / build-and-push (release) Successful in 1m9s
2025-05-19 15:25:34 +03:00
8e2aa010e8 Add .dockerignore
All checks were successful
Build and Push Docker Image / build-and-push (release) Successful in 1m26s
2025-05-19 14:57:22 +03:00
904ac3fb8b Add requirements.txt 2025-05-19 14:55:08 +03:00
1547b0169c Add dockerfile 2025-05-19 14:53:46 +03:00
3 changed files with 54 additions and 0 deletions

11
.dockerignore Normal file
View File

@ -0,0 +1,11 @@
#.dockerignore
# Docker
.dockerignore
dockerfile
compose.yaml
compose.yml
# Git
.gitignore
*.md
example.env

17
dockerfile Normal file
View File

@ -0,0 +1,17 @@
# Используем официальный образ Python 3
FROM python:3.13-slim
# Устанавливаем рабочую директорию внутри контейнера
WORKDIR /app
# Копируем requirements.txt в контейнер для установки зависимостей
COPY requirements.txt ./
# Устанавливаем зависимости
RUN pip install --no-cache-dir -r requirements.txt
# Копируем остальные файлы проекта в контейнер
COPY . .
# Определяем команду запуска приложения
CMD ["python", "src/main.py"]

26
requirements.txt Normal file
View File

@ -0,0 +1,26 @@
aiofiles==24.1.0
aiogram==3.20.0.post0
aiohappyeyeballs==2.6.1
aiohttp==3.11.18
aiosignal==1.3.2
annotated-types==0.7.0
async-timeout==5.0.1
attrs==25.3.0
certifi==2025.4.26
charset-normalizer==3.4.1
config==0.5.1
frozenlist==1.6.0
idna==3.10
magic-filter==1.0.12
multidict==6.4.3
propcache==0.3.1
pybit==5.10.1
pycryptodome==3.22.0
pydantic==2.11.3
pydantic_core==2.33.1
python-decouple==3.8
requests==2.32.3
typing-inspection==0.4.0
typing_extensions==4.13.2
urllib3==2.4.0
websocket-client==1.8.0