-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
36 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,13 @@ FROM apache/superset | |
|
||
USER superset | ||
|
||
ARG PRELOAD_EXAMPLES=false | ||
ARG VIRTUAL_IP_ADDRESS | ||
ARG PRELOAD_EXAMPLES="false" | ||
|
||
COPY --chown=superset superset_config.py /app/ | ||
ENV SUPERSET_CONFIG_PATH /app/superset_config.py | ||
COPY --chown=superset "superset_config.py" "/app/" | ||
|
||
ENV SUPERSET_CONFIG_PATH="/app/superset_config.py" | ||
ENV VIRTUAL_IP_ADDRESS="${VIRTUAL_IP_ADDRESS}" | ||
|
||
RUN \ | ||
Check failure on line 13 in services/superset/Dockerfile GitHub Actions / run-docker-hadolint
|
||
pip \ | ||
|
@@ -17,25 +20,27 @@ RUN \ | |
fab \ | ||
create-admin \ | ||
--username \ | ||
superset \ | ||
"superset" \ | ||
--firstname \ | ||
superset \ | ||
"superset" \ | ||
--lastname \ | ||
superset \ | ||
"superset" \ | ||
--email \ | ||
[email protected] \ | ||
"[email protected]" \ | ||
--password \ | ||
cluster \ | ||
"cluster" \ | ||
&& \ | ||
superset \ | ||
db \ | ||
upgrade \ | ||
&& \ | ||
if ${PRELOAD_EXAMPLES}; then \ | ||
if "${PRELOAD_EXAMPLES}"; then \ | ||
superset load_examples; \ | ||
fi \ | ||
&& \ | ||
superset \ | ||
init | ||
|
||
ENTRYPOINT $(pwd)/services/superset/entrypoint.sh | ||
ENTRYPOINT [ "sh", "-c", \ | ||
"celery --app superset.tasks.celery_app:app worker --pool prefork --concurrency 4 -O fair --detach && /usr/bin/run-server.sh" \ | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters