fix: enable installing docker/requirements-local.txt in docker-compose-non-dev.yml (#13926)

This commit is contained in:
ʈᵃᵢ 2021-04-02 18:06:30 -07:00 committed by GitHub
parent e829aa52eb
commit 541d23bbd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -44,6 +44,8 @@ services:
env_file: docker/.env-non-dev
image: *superset-image
container_name: superset_app
command: ["/app/docker/docker-bootstrap.sh", "app-gunicorn"]
user: "root"
restart: unless-stopped
ports:
- 8088:8088

View File

@ -45,4 +45,7 @@ elif [[ "${1}" == "beat" ]]; then
elif [[ "${1}" == "app" ]]; then
echo "Starting web app..."
flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0
elif [[ "${1}" == "app-gunicorn" ]]; then
echo "Starting web app..."
/app/docker/docker-entrypoint.sh
fi