forked from GoogleCloudPlatform/click-to-deploy
-
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.
Docker - Superset - Version updated to 2.1.1 and added 3.0.0 (GoogleC…
- Loading branch information
1 parent
481790d
commit ddb0cbd
Showing
12 changed files
with
336 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
FROM marketplace.gcr.io/google/c2d-debian11 | ||
|
||
ARG SUPERSET_VERSION="3.0.0" | ||
ENV C2D_RELEASE "3.0.0" | ||
ENV SUPERSET_VERSION ${SUPERSET_VERSION} | ||
ENV FLASK_APP="superset.app:create_app()" | ||
ENV SUPERSET_HOME=/var/lib/superset | ||
|
||
# Installing python3 and dependencies | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends build-essential libssl-dev libffi-dev python3-dev python3-pip libsasl2-dev openssl\ | ||
libldap2-dev default-libmysqlclient-dev | ||
|
||
# Create superset user & install dependencies | ||
WORKDIR /home/superset | ||
COPY requirements*.txt ./ | ||
RUN groupadd supergroup && \ | ||
useradd -U -G supergroup superset && \ | ||
mkdir -p /etc/superset && \ | ||
mkdir -p $SUPERSET_HOME && \ | ||
chown -R superset:superset /etc/superset && \ | ||
chown -R superset:superset $SUPERSET_HOME && \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
curl \ | ||
freetds-bin \ | ||
freetds-dev \ | ||
libaio1 \ | ||
libecpg-dev \ | ||
libffi-dev \ | ||
libldap2-dev \ | ||
libpq-dev \ | ||
libsasl2-2 \ | ||
libsasl2-modules-gssapi-mit && \ | ||
pip install --disable-pip-version-check --upgrade "pip==23.2.1" && \ | ||
pip install -r requirements.txt && \ | ||
pip install apache-superset==$SUPERSET_VERSION && \ | ||
pip install sqlparse=='0.4.4' | ||
# https://github.com/apache/superset/issues/23742 | ||
|
||
# Configure Filesystem | ||
VOLUME /etc/superset | ||
VOLUME /home/superset | ||
VOLUME /var/lib/superset | ||
|
||
EXPOSE 8088 | ||
|
||
COPY ./docker-entrypoint.sh / | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
# ENTRYPOINT ["tail", "-f", "/dev/null"] |
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# Might be empty | ||
set -e | ||
|
||
# | ||
# Always install local overrides first | ||
# | ||
|
||
STEP_CNT=5 | ||
|
||
echo_step() { | ||
cat <<EOF | ||
###################################################################### | ||
Init Step ${1}/${STEP_CNT} [${2}] -- ${3} | ||
###################################################################### | ||
EOF | ||
} | ||
if [ "$SUPERSET_PASSWORD" ]; then | ||
ADMIN_PASSWORD="$SUPERSET_PASSWORD" | ||
else | ||
ADMIN_PASSWORD="admin" | ||
fi | ||
|
||
# Initialize the database | ||
echo_step "1" "Starting" "Applying DB migrations" | ||
superset db upgrade | ||
echo_step "1" "Complete" "Applying DB migrations" | ||
|
||
# Create an admin user | ||
echo_step "2" "Starting" "Setting up admin user ( admin / $ADMIN_PASSWORD )" | ||
superset fab create-admin \ | ||
--username admin \ | ||
--firstname Superset \ | ||
--lastname Admin \ | ||
--email [email protected] \ | ||
--password $ADMIN_PASSWORD | ||
echo_step "2" "Complete" "Setting up admin user" | ||
# Create default roles and permissions | ||
echo_step "3" "Starting" "Setting up roles and perms" | ||
superset init | ||
echo_step "3" "Complete" "Setting up roles and perms" | ||
|
||
|
||
if [ "$SUPERSET_LOAD_EXAMPLES" = "yes" ]; then | ||
# Load some data to play with | ||
echo_step "4" "Starting" "Loading examples" | ||
superset load_examples | ||
echo_step "4" "Complete" "Loading examples" | ||
else | ||
echo_step "4" "Complete" "No examples loaded" | ||
fi | ||
|
||
HYPHEN_SYMBOL='-' | ||
|
||
echo_step "5" "Starting" "Launching the app" | ||
gunicorn \ | ||
--bind "${SUPERSET_BIND_ADDRESS:-0.0.0.0}:${SUPERSET_PORT:-8088}" \ | ||
--access-logfile "${ACCESS_LOG_FILE:-$HYPHEN_SYMBOL}" \ | ||
--error-logfile "${ERROR_LOG_FILE:-$HYPHEN_SYMBOL}" \ | ||
--workers ${SERVER_WORKER_AMOUNT:-1} \ | ||
--worker-class ${SERVER_WORKER_CLASS:-gthread} \ | ||
--threads ${SERVER_THREADS_AMOUNT:-20} \ | ||
--timeout ${GUNICORN_TIMEOUT:-60} \ | ||
--limit-request-line ${SERVER_LIMIT_REQUEST_LINE:-0} \ | ||
--limit-request-field_size ${SERVER_LIMIT_REQUEST_FIELD_SIZE:-0} \ | ||
"${FLASK_APP}" |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cryptography==38.0.4 | ||
dnspython==2.1.0 | ||
email-validator==1.1.3 | ||
markupsafe==2.1.1 | ||
pillow==9.4.0 | ||
pyopenssl==23.1.1 | ||
wtforms==2.3.3 | ||
wtforms-json==0.3.3 | ||
werkzeug==2.1.1 | ||
mysqlclient==2.1.0 | ||
marshmallow_enum | ||
psycopg2-binary | ||
pybigquery | ||
statsd | ||
statsd-client |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{{- $superset := index .Packages "superset" -}} | ||
|
||
|
||
FROM {{ .From }} | ||
|
||
ARG SUPERSET_VERSION="{{ $superset.Version }}" | ||
ENV C2D_RELEASE "{{ $superset.Version }}" | ||
ENV SUPERSET_VERSION ${SUPERSET_VERSION} | ||
ENV FLASK_APP="superset.app:create_app()" | ||
ENV SUPERSET_HOME=/var/lib/superset | ||
|
||
# Installing python3 and dependencies | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends build-essential libssl-dev libffi-dev python3-dev python3-pip libsasl2-dev openssl\ | ||
libldap2-dev default-libmysqlclient-dev | ||
|
||
# Create superset user & install dependencies | ||
WORKDIR /home/superset | ||
COPY requirements*.txt ./ | ||
RUN groupadd supergroup && \ | ||
useradd -U -G supergroup superset && \ | ||
mkdir -p /etc/superset && \ | ||
mkdir -p $SUPERSET_HOME && \ | ||
chown -R superset:superset /etc/superset && \ | ||
chown -R superset:superset $SUPERSET_HOME && \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
curl \ | ||
freetds-bin \ | ||
freetds-dev \ | ||
libaio1 \ | ||
libecpg-dev \ | ||
libffi-dev \ | ||
libldap2-dev \ | ||
libpq-dev \ | ||
libsasl2-2 \ | ||
libsasl2-modules-gssapi-mit && \ | ||
pip install --disable-pip-version-check --upgrade "pip==23.2.1" && \ | ||
pip install -r requirements.txt && \ | ||
pip install apache-superset==$SUPERSET_VERSION && \ | ||
pip install sqlparse=='0.4.4' | ||
# https://github.com/apache/superset/issues/23742 | ||
|
||
# Configure Filesystem | ||
VOLUME /etc/superset | ||
VOLUME /home/superset | ||
VOLUME /var/lib/superset | ||
|
||
EXPOSE 8088 | ||
|
||
COPY ./docker-entrypoint.sh / | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
# ENTRYPOINT ["tail", "-f", "/dev/null"] |
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# Might be empty | ||
set -e | ||
|
||
# | ||
# Always install local overrides first | ||
# | ||
|
||
STEP_CNT=5 | ||
|
||
echo_step() { | ||
cat <<EOF | ||
###################################################################### | ||
Init Step ${1}/${STEP_CNT} [${2}] -- ${3} | ||
###################################################################### | ||
EOF | ||
} | ||
if [ "$SUPERSET_PASSWORD" ]; then | ||
ADMIN_PASSWORD="$SUPERSET_PASSWORD" | ||
else | ||
ADMIN_PASSWORD="admin" | ||
fi | ||
|
||
# Initialize the database | ||
echo_step "1" "Starting" "Applying DB migrations" | ||
superset db upgrade | ||
echo_step "1" "Complete" "Applying DB migrations" | ||
|
||
# Create an admin user | ||
echo_step "2" "Starting" "Setting up admin user ( admin / $ADMIN_PASSWORD )" | ||
superset fab create-admin \ | ||
--username admin \ | ||
--firstname Superset \ | ||
--lastname Admin \ | ||
--email [email protected] \ | ||
--password $ADMIN_PASSWORD | ||
echo_step "2" "Complete" "Setting up admin user" | ||
# Create default roles and permissions | ||
echo_step "3" "Starting" "Setting up roles and perms" | ||
superset init | ||
echo_step "3" "Complete" "Setting up roles and perms" | ||
|
||
|
||
if [ "$SUPERSET_LOAD_EXAMPLES" = "yes" ]; then | ||
# Load some data to play with | ||
echo_step "4" "Starting" "Loading examples" | ||
superset load_examples | ||
echo_step "4" "Complete" "Loading examples" | ||
else | ||
echo_step "4" "Complete" "No examples loaded" | ||
fi | ||
|
||
HYPHEN_SYMBOL='-' | ||
|
||
echo_step "5" "Starting" "Launching the app" | ||
gunicorn \ | ||
--bind "${SUPERSET_BIND_ADDRESS:-0.0.0.0}:${SUPERSET_PORT:-8088}" \ | ||
--access-logfile "${ACCESS_LOG_FILE:-$HYPHEN_SYMBOL}" \ | ||
--error-logfile "${ERROR_LOG_FILE:-$HYPHEN_SYMBOL}" \ | ||
--workers ${SERVER_WORKER_AMOUNT:-1} \ | ||
--worker-class ${SERVER_WORKER_CLASS:-gthread} \ | ||
--threads ${SERVER_THREADS_AMOUNT:-20} \ | ||
--timeout ${GUNICORN_TIMEOUT:-60} \ | ||
--limit-request-line ${SERVER_LIMIT_REQUEST_LINE:-0} \ | ||
--limit-request-field_size ${SERVER_LIMIT_REQUEST_FIELD_SIZE:-0} \ | ||
"${FLASK_APP}" |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cryptography==38.0.4 | ||
dnspython==2.1.0 | ||
email-validator==1.1.3 | ||
markupsafe==2.1.1 | ||
pillow==9.4.0 | ||
pyopenssl==23.1.1 | ||
wtforms==2.3.3 | ||
wtforms-json==0.3.3 | ||
werkzeug==2.1.1 | ||
mysqlclient==2.1.0 | ||
marshmallow_enum | ||
psycopg2-binary | ||
pybigquery | ||
statsd | ||
statsd-client |
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