Skip to content

Commit

Permalink
Merge pull request #9 from dsuhoi/develop
Browse files Browse the repository at this point in the history
Added docker-compose file.
  • Loading branch information
dsuhoi committed Jun 29, 2023
2 parents 8aac831 + edc432d commit b9713f5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ COPY app/ ./app/

RUN pip install -r requirements.txt

ENTRYPOINT ["python", "start.py"]
# ENTRYPOINT ["python", "start.py"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pip istall -r requirements.txt

## Run
```sh
python start.py
python main.py
```

## Contributing
Expand Down
Empty file added app/__init__.py
Empty file.
Empty file added app/utils/__init__.py
Empty file.
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: "3.9"
services:
web:
build: .
command: python3 main.py
volumes:
- .:/test_bot
ports:
- 5005:5000
env_file:
- ./.env

0 comments on commit b9713f5

Please sign in to comment.