Files
grid_application/.docker/entrypoint.sh
Tobias Quadfasel 5a5f41246d feat(base-app): Add docker setup
Adding a dockerfile as well as an `entrypoint.sh` file for deployment
using `gunicorn`.
2024-08-29 17:35:14 +02:00

6 lines
121 B
Bash

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