1.10.15-debian-10-r26 release
This commit is contained in:
parent
3b005f7188
commit
3f2b0ac407
|
|
@ -15,7 +15,7 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.8.9-0
|
|||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "postgresql-client" "10.16.0-0" --checksum 6ae2df74c4cc145690104c9bfbd4f9977cc00d26b3a010bb1eba74d92048485d
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "ini-file" "1.3.0-2" --checksum d89528e5d733f34ae030984584659ff10a36370d40332bd8d41c047764d39cda
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "airflow" "1.10.15-2" --checksum 1b8094ae22f5b998a7bbe2aad6eb61d2d474ffc403f7f6dba34f2719d5a6f6b1
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "airflow" "1.10.15-3" --checksum fd3cec11c28717eaff44c86e09ab18c8e9274d8f33feeb12850933c935c98158
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
|
||||
RUN update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \
|
||||
|
|
@ -27,7 +27,7 @@ RUN /opt/bitnami/scripts/airflow/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
|
||||
ENV AIRFLOW_HOME="/opt/bitnami/airflow" \
|
||||
BITNAMI_APP_NAME="airflow" \
|
||||
BITNAMI_IMAGE_VERSION="1.10.15-debian-10-r25" \
|
||||
BITNAMI_IMAGE_VERSION="1.10.15-debian-10-r26" \
|
||||
LANG="en_US.UTF-8" \
|
||||
LANGUAGE="en_US:en" \
|
||||
LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/airflow/venv/lib/python3.8/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"airflow": {
|
||||
"arch": "amd64",
|
||||
"digest": "1b8094ae22f5b998a7bbe2aad6eb61d2d474ffc403f7f6dba34f2719d5a6f6b1",
|
||||
"digest": "fd3cec11c28717eaff44c86e09ab18c8e9274d8f33feeb12850933c935c98158",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.10.15-2"
|
||||
"version": "1.10.15-3"
|
||||
},
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -22,9 +22,17 @@
|
|||
# Arguments:
|
||||
# None
|
||||
# Returns:
|
||||
# None
|
||||
# 0 if the validation succeeded, 1 otherwise
|
||||
#########################
|
||||
airflow_validate() {
|
||||
local error_code=0
|
||||
|
||||
# Auxiliary functions
|
||||
print_validation_error() {
|
||||
error "$1"
|
||||
error_code=1
|
||||
}
|
||||
|
||||
# Check postgresql host
|
||||
[[ -z "$AIRFLOW_DATABASE_HOST" ]] && print_validation_error "Missing AIRFLOW_DATABASE_HOST"
|
||||
|
||||
|
|
@ -45,6 +53,8 @@ airflow_validate() {
|
|||
[[ -z "$AIRFLOW_POOL_DESC" ]] && print_validation_error "Provided AIRFLOW_POOL_NAME but missing AIRFLOW_POOL_DESC"
|
||||
[[ -z "$AIRFLOW_POOL_SIZE" ]] && print_validation_error "Provided AIRFLOW_POOL_NAME but missing AIRFLOW_POOL_SIZE"
|
||||
fi
|
||||
|
||||
return "$error_code"
|
||||
}
|
||||
|
||||
########################
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r59`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/2.0.1-debian-10-r59/2/debian-10/Dockerfile)
|
||||
* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r25` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/1.10.15-debian-10-r25/1/debian-10/Dockerfile)
|
||||
* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r26` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/1.10.15-debian-10-r26/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue