1.10.11-debian-10-r20 release
This commit is contained in:
parent
85b9b1ff52
commit
a07db92f3d
|
|
@ -11,7 +11,7 @@ COPY prebuildfs /
|
|||
RUN install_packages ca-certificates curl gzip libbsd0 libbz2-1.0 libc6 libcom-err2 libedit2 libffi6 libgcc1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed4 libicu63 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libmariadb3 libncursesw6 libnettle6 libp11-kit0 libreadline7 libsasl2-2 libsqlite3-0 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 locales procps sudo tar zlib1g
|
||||
RUN /build/bitnami-user.sh
|
||||
RUN /build/install-nami.sh
|
||||
RUN bitnami-pkg install python-3.6.11-6 --checksum 1e7ff08f1ba4498c8043de37260769ed2afcf9693c5777deca36402af3bf497d
|
||||
RUN bitnami-pkg install python-3.6.11-7 --checksum 7b0624a673d8cddcb3bccf7d694189c73a827b74d9c913b07297d8c37402dd5d
|
||||
RUN bitnami-pkg install postgresql-client-10.13.0-2 --checksum e0ed74425c548835e468d2bdead1ce1c266d5c77d56f3104f3a9b4dcf4e5ac35
|
||||
RUN bitnami-pkg install tini-0.19.0-0 --checksum 9a8ae20be31a518f042fcec359f2cf35bfdb4e2a56f2fa8ff9ef2ecaf45da80c
|
||||
RUN bitnami-pkg install gosu-1.12.0-1 --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c
|
||||
|
|
@ -40,7 +40,7 @@ ENV AIRFLOW_DATABASE_HOST="postgresql" \
|
|||
AIRFLOW_WEBSERVER_PORT_NUMBER="8080" \
|
||||
AIRFLOW_WORKER_PORT_NUMBER="8793" \
|
||||
BITNAMI_APP_NAME="airflow-worker" \
|
||||
BITNAMI_IMAGE_VERSION="1.10.11-debian-10-r19" \
|
||||
BITNAMI_IMAGE_VERSION="1.10.11-debian-10-r20" \
|
||||
C_FORCE_ROOT="True" \
|
||||
LANG="en_US.UTF-8" \
|
||||
LANGUAGE="en_US:en" \
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@
|
|||
},
|
||||
"python": {
|
||||
"arch": "amd64",
|
||||
"digest": "1e7ff08f1ba4498c8043de37260769ed2afcf9693c5777deca36402af3bf497d",
|
||||
"digest": "7b0624a673d8cddcb3bccf7d694189c73a827b74d9c913b07297d8c37402dd5d",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "3.6.11-6"
|
||||
"version": "3.6.11-7"
|
||||
},
|
||||
"tini": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# shellcheck disable=SC1091
|
||||
|
||||
. /opt/bitnami/base/functions
|
||||
. /opt/bitnami/base/helpers
|
||||
|
||||
|
|
@ -8,6 +10,13 @@ DAEMON=airflow
|
|||
EXEC=$(which $DAEMON)
|
||||
START_COMMAND="${EXEC} worker ${AIRFLOW_QUEUE:+-q $AIRFLOW_QUEUE} | tee /opt/bitnami/airflow/logs/airflow-worker.log"
|
||||
|
||||
# Install custom python package if requirements.txt is present
|
||||
if [[ -f "/bitnami/python/requirements.txt" ]]; then
|
||||
source /opt/bitnami/airflow/venv/bin/activate
|
||||
pip install -r /bitnami/python/requirements.txt
|
||||
deactivate
|
||||
fi
|
||||
|
||||
echo "Waiting for db..."
|
||||
counter=0;
|
||||
res=1000;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ $ docker-compose up
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`1-debian-10`, `1.10.11-debian-10-r19`, `1`, `1.10.11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker-scheduler/blob/1.10.11-debian-10-r19/1/debian-10/Dockerfile)
|
||||
* [`1-debian-10`, `1.10.11-debian-10-r20`, `1`, `1.10.11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker-scheduler/blob/1.10.11-debian-10-r20/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow-worker).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue