feat(base-app): Add docker setup

Adding a dockerfile as well as an `entrypoint.sh` file for deployment
using `gunicorn`.
This commit is contained in:
Tobias Quadfasel
2024-08-29 17:35:14 +02:00
parent 25aeb62951
commit 5a5f41246d
2 changed files with 50 additions and 0 deletions

5
.docker/entrypoint.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
# Start Dash and run in background
echo "Starting Dash app..."
poetry run gunicorn app:server -b 0.0.0.0:8000