Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e2aa010e8 | |||
| 904ac3fb8b | |||
| 1547b0169c |
11
.dockerignore
Normal file
11
.dockerignore
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#.dockerignore
|
||||||
|
# Docker
|
||||||
|
.dockerignore
|
||||||
|
dockerfile
|
||||||
|
compose.yaml
|
||||||
|
compose.yml
|
||||||
|
|
||||||
|
# Git
|
||||||
|
.gitignore
|
||||||
|
*.md
|
||||||
|
example.env
|
||||||
17
dockerfile
Normal file
17
dockerfile
Normal 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", "main.py"]
|
||||||
26
requirements.txt
Normal file
26
requirements.txt
Normal 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
|
||||||
Reference in New Issue
Block a user