-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parameterize the base image tag of the Superset dockerfile (#48)
- Loading branch information
1 parent
e7700dd
commit 59f5d86
Showing
3 changed files
with
20 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
# | ||
# We use the official Superset image here instead of building our own from scratch | ||
# to avoid having to deal with python dependencies and Nexus integration. We might | ||
# change this in the future. | ||
# | ||
# 2021.11.02: The image tag below has the same digest as the 'latest' tag at the | ||
# time of writing this Dockerfile. | ||
# | ||
FROM apache/superset:9515ba68dc560307758774d1618c885e379d2011 | ||
LABEL maintainer="Stackable GmbH" | ||
|
||
ARG PRODUCT | ||
ARG _BASE_IMAGE_TAG | ||
|
||
FROM apache/superset:$_BASE_IMAGE_TAG | ||
LABEL maintainer="Stackable GmbH" | ||
|
||
COPY superset/stackable/superset_config.py /app/pythonpath/ |