diff --git a/Dockerfile b/Dockerfile index b9530f8..3167820 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ COPY app/ ./app/ RUN pip install -r requirements.txt -ENTRYPOINT ["python", "start.py"] +# ENTRYPOINT ["python", "start.py"] diff --git a/README.md b/README.md index 54910e2..6a6a56e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ pip istall -r requirements.txt ## Run ```sh -python start.py +python main.py ``` ## Contributing diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/utils/__init__.py b/app/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c6e3169 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.9" +services: + web: + build: . + command: python3 main.py + volumes: + - .:/test_bot + ports: + - 5005:5000 + env_file: + - ./.env