Skip to content

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
tedoaba committed Oct 28, 2024
1 parent 36bd851 commit bfc2477
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
web:
build: .
container_name: flask_app
command: flask --app app run --host=0.0.0.0 --port=8000 --debug
command: gunicorn -b 0.0.0.0:8000 app:app
ports:
- "8000:8000"
environment:
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ click
flask_sqlalchemy
Flask-Migrate
pytest
dash
dash
gunicorn

0 comments on commit bfc2477

Please sign in to comment.