From f87165cc29c066b14ce4ddb24cbfcf8b215be524 Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Tue, 27 Apr 2021 18:57:16 -0600 Subject: [PATCH 1/6] Initial commit --- Dockerfile | 49 +++ LICENSE | 13 + README.md | 398 ++++++++++++++++++++++++- hardening_manifest.yaml | 638 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 1096 insertions(+), 2 deletions(-) create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 hardening_manifest.yaml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c57511c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,49 @@ +ARG BASE_REGISTRY=registry.il2.dso.mil +ARG BASE_IMAGE=jaic-devsecops/apps/bitnami/airflow-scheduler +ARG BASE_TAG=hardened-2.0.1-debian-10-r55 + +FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} +ARG BITNAMI_HOME=/opt/bitnami +ARG BITNAMI_DIR=/bitnami + +ENV BITNAMI_PKG_EXTRA_DIRS="/opt/bitnami/airflow/dags" \ + HOME="/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-10" \ + OS_NAME="linux" + +USER root + +RUN dnf update -y --nodocs && \ + # Needed for pycocotools + dnf -y install gcc && \ + dnf clean all && \ + rm -rf /var/cache/dnf && \ + mkdir -p /local/wheels + +COPY *.whl *.tar.gz /local/wheels/ + +RUN source /opt/bitnami/airflow/venv/bin/activate && \ + for f in $(ls -l /local/wheels | awk '{print $9}' |sed '/^$/d'); do pip install --no-index --no-deps /local/wheels/$f; done && \ + find /opt/bitnami/airflow/venv/lib/python3.8/site-packages -name "*.pem" -o -name "*.key" | egrep ".*test.*/.*\.pem|.*test.*/.*\.key" | xargs rm -f && \ + rm -rf /local/* && \ + dnf -y remove gcc && \ + dnf clean all && \ + rm -rf /var/cache/dnf + +ENV AIRFLOW_HOME="/opt/bitnami/airflow" \ + BITNAMI_APP_NAME="airflow-scheduler" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r54" \ + LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/airflow/venv/lib/python3.8/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \ + LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \ + LNAME="airflow" \ + NSS_WRAPPER_GROUP="/opt/bitnami/airflow/nss_group" \ + NSS_WRAPPER_PASSWD="/opt/bitnami/airflow/nss_passwd" \ + PATH="/opt/bitnami/common/bin:/opt/bitnami/python/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/airflow/venv/bin:$PATH" + +USER 1001 + +HEALTHCHECK --start-period=10s CMD bash -c 'airflow version' || exit 1 + +ENTRYPOINT [ "/opt/bitnami/scripts/airflow-scheduler/entrypoint.sh" ] +CMD [ "/opt/bitnami/scripts/airflow-scheduler/run.sh" ] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c850fde --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015-2021 Bitnami + +Licensed 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. diff --git a/README.md b/README.md index 5dc6fa6..f4f9970 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,397 @@ -# +# What is Apache Airflow Scheduler? -Project template for all Iron Bank container repositories. \ No newline at end of file +> Airflow is a platform to programmatically author, schedule and monitor workflows. Airflow Scheduler is one of the required components when the CeleryExecutor is configured. + +https://airflow.apache.org/ + +# TL;DR + +## Docker Compose + +```console +$ curl -LO https://raw.githubusercontent.com/bitnami/bitnami-docker-airflow-scheduler/master/docker-compose.yml +$ docker-compose up +``` + +You can find the default credentials and available configuration options in the [Environment Variables](#environment-variables) section. + +# Why use Bitnami Images? + +* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems. +* With Bitnami images the latest bug fixes and features are available as soon as possible. +* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs. +* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution. +* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. +* Bitnami container images are released daily with the latest distribution packages available. + + +> This [CVE scan report](https://quay.io/repository/bitnami/airflow-scheduler?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page. + + +# Supported tags and respective `Dockerfile` links + +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/). + + +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/2.0.1-debian-10-r53/2/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r19` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/1.10.15-debian-10-r19/1/debian-10/Dockerfile) + +Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow-scheduler). + +# Prerequisites + +To run this application you need [Docker Engine](https://www.docker.com/products/docker-engine) >= `1.10.0`. [Docker Compose](https://www.docker.com/products/docker-compose) is recommended with a version `1.6.0` or later. + +# How to use this image + +Airflow Scheduler is a component of an Airflow solution configuring with the `CeleryExecutor`. Hence, you will need to rest of Airflow components for this image to work. +You will need an [Airflow Webserver](https://www.github.com/bitnami/bitnami-docker-airflow), one or more [Airflow Workers](https://www.github.com/bitnami/bitnami-docker-airflow-worker), a [PostgreSQL database](https://www.github.com/bitnami/bitnami-docker-postgresql) and a [Redis(TM) server](https://www.github.com/bitnami/bitnami-docker-redis). + +## Using Docker Compose + +The main folder of this repository contains a functional [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/master/docker-compose.yml) file. Run the application using it as shown below: + +```console +$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-airflow-scheduler/master/docker-compose.yml > docker-compose.yml +$ docker-compose up -d +``` + +## Using the Docker Command Line + +If you want to run the application manually instead of using `docker-compose`, these are the basic steps you need to run: + +1. Create a network + + ```console + $ docker network create airflow-tier + ``` + +2. Create a volume for PostgreSQL persistence and create a PostgreSQL container + + ```console + $ docker volume create --name postgresql_data + $ docker run -d --name postgresql \ + -e POSTGRESQL_USERNAME=bn_airflow \ + -e POSTGRESQL_PASSWORD=bitnami1 \ + -e POSTGRESQL_DATABASE=bitnami_airflow \ + --net airflow-tier \ + --volume postgresql_data:/bitnami/postgresql \ + bitnami/postgresql:latest + ``` + +3. Create a volume for Redis(TM) persistence and create a Redis(TM) container + + ```console + $ docker volume create --name redis_data + $ docker run -d --name redis \ + -e ALLOW_EMPTY_PASSWORD=yes \ + --net airflow-tier \ + --volume redis_data:/bitnami \ + bitnami/redis:latest + ``` + +4. Create volumes for Airflow persistence and launch the container + + ```console + $ docker volume create --name airflow_data + $ docker run -d --name airflow -p 8080:8080 \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + -e AIRFLOW_LOAD_EXAMPLES=yes \ + -e AIRFLOW_PASSWORD=bitnami123 \ + -e AIRFLOW_USERNAME=user \ + -e AIRFLOW_EMAIL=user@example.com \ + --net airflow-tier \ + --volume airflow_data:/bitnami \ + bitnami/airflow:latest + ``` + +5. Create volumes for Airflow Scheduler persistence and launch the container + + ```console + $ docker volume create --name airflow_scheduler_data + $ docker run -d --name airflow-scheduler \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + -e AIRFLOW_LOAD_EXAMPLES=yes \ + --net airflow-tier \ + --volume airflow_scheduler_data:/bitnami \ + bitnami/airflow-scheduler:latest + ``` + +6. Create volumes for Airflow Worker persistence and launch the container + + ```console + $ docker volume create --name airflow_worker_data + $ docker run -d --name airflow-worker \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + --net airflow-tier \ + --volume airflow_worker_data:/bitnami \ + bitnami/airflow-worker:latest + ``` + +Access your application at http://your-ip:8080 + +## Persisting your application + +If you remove the container all your data and configurations will be lost, and the next time you run the image the database will be reinitialized. To avoid this loss of data, you should mount a volume that will persist even after the container is removed. + +For persistence you should mount a volume at the `/bitnami` path. Additionally you should mount volumes for persistence of [PostgreSQL data](https://github.com/bitnami/bitnami-docker-mariadb#persisting-your-database) and [Redis(TM) data](https://github.com/bitnami/bitnami-docker-mariadb#persisting-your-database) + +The above examples define docker volumes namely `postgresql_data`, `redis_data`, `airflow_data`, `airflow_scheduler_data` and `airflow_worker_data`. The Airflow Scheduler application state will persist as long as these volumes are not removed. + +To avoid inadvertent removal of these volumes you can [mount host directories as data volumes](https://docs.docker.com/engine/tutorials/dockervolumes/). Alternatively you can make use of volume plugins to host the volume data. + +### Mount host directories as data volumes with Docker Compose + +The following `docker-compose.yml` template demonstrates the use of host directories as data volumes. + +```yaml +version: '2' +services: + postgresql: + image: 'bitnami/postgresql:latest' + environment: + - POSTGRESQL_DATABASE=bitnami_airflow + - POSTGRESQL_USERNAME=bn_airflow + - POSTGRESQL_PASSWORD=bitnami1 + volumes: + - /path/to/airflow-persistence:/bitnami + redis: + image: 'bitnami/redis:latest' + environment: + - ALLOW_EMPTY_PASSWORD=yes + volumes: + - /path/to/airflow-persistence:/bitnami + airflow-worker: + image: bitnami/airflow-worker:latest + environment: + - AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= + - AIRFLOW_EXECUTOR=CeleryExecutor + - AIRFLOW_DATABASE_NAME=bitnami_airflow + - AIRFLOW_DATABASE_USERNAME=bn_airflow + - AIRFLOW_DATABASE_PASSWORD=bitnami1 + - AIRFLOW_LOAD_EXAMPLES=yes + volumes: + - /path/to/airflow-persistence:/bitnami + airflow-scheduler: + image: bitnami/airflow-scheduler:latest + environment: + - AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= + - AIRFLOW_EXECUTOR=CeleryExecutor + - AIRFLOW_DATABASE_NAME=bitnami_airflow + - AIRFLOW_DATABASE_USERNAME=bn_airflow + - AIRFLOW_DATABASE_PASSWORD=bitnami1 + - AIRFLOW_LOAD_EXAMPLES=yes + volumes: + - /path/to/airflow-persistence:/bitnami + airflow: + image: bitnami/airflow:latest + environment: + - AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= + - AIRFLOW_EXECUTOR=CeleryExecutor + - AIRFLOW_DATABASE_NAME=bitnami_airflow + - AIRFLOW_DATABASE_USERNAME=bn_airflow + - AIRFLOW_DATABASE_PASSWORD=bitnami1 + - AIRFLOW_PASSWORD=bitnami123 + - AIRFLOW_USERNAME=user + - AIRFLOW_EMAIL=user@example.com + ports: + - '8080:8080' + volumes: + - /path/to/airflow-persistence:/bitnami +``` + +### Mount host directories as data volumes using the Docker command line + +1. Create a network (if it does not exist) + + ```console + $ docker network create airflow-tier + ``` + +2. Create the PostgreSQL container with host volumes + + ```console + $ docker run -d --name postgresql \ + -e POSTGRESQL_USERNAME=bn_airflow \ + -e POSTGRESQL_PASSWORD=bitnami1 \ + -e POSTGRESQL_DATABASE=bitnami_airflow \ + --net airflow-tier \ + --volume /path/to/postgresql-persistence:/bitnami \ + bitnami/postgresql:latest + ``` + +3. Create the Redis(TM) container with host volumes + + ```console + $ docker run -d --name redis \ + -e ALLOW_EMPTY_PASSWORD=yes \ + --net airflow-tier \ + --volume /path/to/redis-persistence:/bitnami \ + bitnami/redis:latest + ``` + +4. Create the Airflow container with host volumes + + ```console + $ docker run -d --name airflow -p 8080:8080 \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + -e AIRFLOW_LOAD_EXAMPLES=yes \ + -e AIRFLOW_PASSWORD=bitnami123 \ + -e AIRFLOW_USERNAME=user \ + -e AIRFLOW_EMAIL=user@example.com \ + --net airflow-tier \ + --volume /path/to/airflow-persistence:/bitnami \ + bitnami/airflow:latest + ``` + +5. Create the Airflow Scheduler container with host volumes + + ```console + $ docker run -d --name airflow-scheduler \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + -e AIRFLOW_LOAD_EXAMPLES=yes \ + --net airflow-tier \ + --volume /path/to/airflow-scheduler-persistence:/bitnami \ + bitnami/airflow-scheduler:latest + ``` + +6. Create the Airflow Worker container with host volumes + + ```console + $ docker run -d --name airflow-worker \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + --net airflow-tier \ + --volume /path/to/airflow-worker-persistence:/bitnami \ + bitnami/airflow-worker:latest + ``` + +# Configuration + +## Installing additional python modules + +This container supports the installation of additional python modules at start-up time. In order to do that, you can mount a `requirements.txt` file with your specific needs under the path `/bitnami/python/requirements.txt`. + +## Environment variables + +The Airflow Scheduler instance can be customized by specifying environment variables on the first run. The following environment values are provided to customize Airflow Scheduler: + +##### Airflow Scheduler configuration + +- `AIRFLOW_EXECUTOR`: Airflow Scheduler executor. Default: **SequentialExecutor** +- `AIRFLOW_FERNET_KEY`: Airflow Scheduler Fernet key. No defaults. +- `AIRFLOW_WEBSERVER_HOST`: Airflow Scheduler webserver host. Default: **airflow** +- `AIRFLOW_WEBSERVER_PORT_NUMBER`: Airflow Scheduler webserver port. Default: **8080** +- `AIRFLOW_LOAD_EXAMPLES`: To load example tasks into the application. Default: **yes** +- `AIRFLOW_HOSTNAME_CALLABLE`: Method to obtain the hostname. No defaults. + +##### Use an existing database + +- `AIRFLOW_DATABASE_HOST`: Hostname for PostgreSQL server. Default: **postgresql** +- `AIRFLOW_DATABASE_PORT_NUMBER`: Port used by PostgreSQL server. Default: **5432** +- `AIRFLOW_DATABASE_NAME`: Database name that Airflow Scheduler will use to connect with the database. Default: **bitnami_airflow** +- `AIRFLOW_DATABASE_USERNAME`: Database user that Airflow Scheduler will use to connect with the database. Default: **bn_airflow** +- `AIRFLOW_DATABASE_PASSWORD`: Database password that Airflow Scheduler will use to connect with the database. No defaults. +- `AIRFLOW_DATABASE_USE_SSL`: Set to yes if the database uses SSL. Default: **no** +- `AIRFLOW_REDIS_USE_SSL`: Set to yes if Redis(TM) uses SSL. Default: **no** +- `REDIS_HOST`: Hostname for Redis(TM) server. Default: **redis** +- `REDIS_PORT_NUMBER`: Port used by Redis(TM) server. Default: **6379** +- `REDIS_USER`: USER that Airflow Scheduler will use to connect with Redis(TM). No defaults. +- `REDIS_PASSWORD`: Password that Airflow Scheduler will use to connect with Redis(TM). No defaults. + +> In addition to the previous environment variables, all the parameters from the configuration file can be overwritten by using environment variables with this format: `AIRFLOW__{SECTION}__{KEY}`. Note the double underscores. + +### Specifying Environment variables using Docker Compose + +```yaml +version: '2' + +services: + airflow: + image: bitnami/airflow:1 + environment: + - AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= + - AIRFLOW_EXECUTOR=CeleryExecutor + - AIRFLOW_DATABASE_NAME=bitnami_airflow + - AIRFLOW_DATABASE_USERNAME=bn_airflow + - AIRFLOW_DATABASE_PASSWORD=bitnami1 + - AIRFLOW_PASSWORD=bitnami123 + - AIRFLOW_USERNAME=user + - AIRFLOW_EMAIL=user@example.com +``` + +### Specifying Environment variables on the Docker command line + +```console +$ docker run -d --name airflow -p 8080:8080 \ + -e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \ + -e AIRFLOW_EXECUTOR=CeleryExecutor \ + -e AIRFLOW_DATABASE_NAME=bitnami_airflow \ + -e AIRFLOW_DATABASE_USERNAME=bn_airflow \ + -e AIRFLOW_DATABASE_PASSWORD=bitnami1 \ + -e AIRFLOW_PASSWORD=bitnami123 \ + -e AIRFLOW_USERNAME=user \ + -e AIRFLOW_EMAIL=user@example.com \ + --volume airflow_data:/bitnami \ + bitnami/airflow:latest +``` + +# Notable Changes + +## 1.10.15-debian-10-r18 and 2.0.1-debian-10-r52 + +- The size of the container image has been decreased. +- The configuration logic is now based on Bash scripts in the *rootfs/* folder. + +# Contributing + +We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-airflow-scheduler/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-airflow-scheduler/pulls) with your contribution. + +# Issues + +If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-airflow-scheduler/issues/new). For us to provide better support, be sure to include the following information in your issue: + +- Host OS and version +- Docker version (`$ docker version`) +- Output of `$ docker info` +- Version of this container (`$ echo $BITNAMI_IMAGE_VERSION` inside the container) +- The command you used to run the container, and any relevant output you saw (masking any sensitive information) + +# License + +Copyright 2015-2021 Bitnami + +Licensed 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 + + + +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. diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml new file mode 100644 index 0000000..801346d --- /dev/null +++ b/hardening_manifest.yaml @@ -0,0 +1,638 @@ +--- +apiVersion: v1 + +# The repository name in registry1, excluding /ironbank/ +name: "bitnami/airflow-scheduler" + +# List of tags to push for the repository in registry1 +# The most specific version should be the first tag and will be shown +# on ironbank.dsop.io +tags: +- "2.0.1" + +# Build args passed to Dockerfile ARGs +args: + BASE_IMAGE: "redhat/ubi/ubi8" + BASE_TAG: "8.3" + +# Docker image labels +labels: + org.opencontainers.image.title: "airflow-scheduler" + ## Human-readable description of the software packaged in the image + org.opencontainers.image.description: "Airflow is a platform to programmatically author, schedule and monitor workflows. Airflow Scheduler is one of the required components when the CeleryExecutor is configured." + ## License(s) under which contained software is distributed + org.opencontainers.image.licenses: "Apache-2.0" + ## URL to find more information on the image + org.opencontainers.image.url: "https://bitnami.com/stack/airflow-scheduler/containers" + ## Name of the distributing entity, organization or individual + org.opencontainers.image.vendor: "Bitnami" + org.opencontainers.image.version: "2.0.1" + ## Keywords to help with search (ex. "cicd,gitops,golang") + mil.dso.ironbank.image.keywords: "workflows,orchestration,pipelines" + ## This value can be "opensource" or "commercial" + mil.dso.ironbank.image.type: "opensource" + ## Product the image belongs to for grouping multiple images + mil.dso.ironbank.product.name: "Airflow" + +# List of resources to make available to the offline build context +resources: + # CHANGE ME +- tag: bitnami/airflow-scheduler:2.0.1-debian-10-r55 + url: docker://docker.io/bitnami/airflow-scheduler@sha256:b9e5a2196d9f303bdb3d674a703fc106d37beeb0eb7d5b541deaf27c7b3428e6 +- filename: matplotlib-3.4.1-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/d4/2c/10224fd2eb8a27f415509d5e35e2945a47856c6128c6027a59a8ffa4016a/matplotlib-3.4.1-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: ac2a30a09984c2719f112a574b6543ccb82d020fd1b23b4d55bf4759ba8dd8f5 +- filename: Pillow-8.2.0-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/6a/1c/6426906aed9215168f0885f8c750c89f7619d9a10709591d111af44c0b57/Pillow-8.2.0-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: 6c32cc3145928c4305d142ebec682419a6c0a8ce9e33db900027ddca1ec39178 +- filename: kiwisolver-1.3.1-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/99/04/41e831621ddec54f99e9e3693b8d4f2f583d7f3ee8df33bf9a7d6bf764de/kiwisolver-1.3.1-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: 78751b33595f7f9511952e7e60ce858c6d64db2e062afb325985ddbd34b5c131 +- filename: cycler-0.10.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 1d8a5ae1ff6c5cf9b93e8811e581232ad8920aeec647c37316ceac982b08cb2d +- filename: kafka-1.3.5-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/21/71/73286e748ac5045b6a669c2fe44b03ac4c5d3d2af9291c4c6fc76438a9a9/kafka-1.3.5-py2.py3-none-any.whl + validation: + type: sha256 + value: 35a49e9a432f6792aad48b2ab09d03867357aaa06eacba2678b7fd0808156e5c +- filename: sklearn-0.0.tar.gz + url: https://files.pythonhosted.org/packages/1e/7a/dbb3be0ce9bd5c8b7e3d87328e79063f8b263b2b1bfa4774cb1147bfcd3f/sklearn-0.0.tar.gz + validation: + type: sha256 + value: e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31 +- filename: scikit_learn-0.24.1-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/6e/c0/39aee6ef61f586f3c1aa76d4f35485556e2eb86136a5f1f1ee8b62fae3ee/scikit_learn-0.24.1-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: 259ec35201e82e2db1ae2496f229e63f46d7f1695ae68eef9350b00dc74ba52f +- filename: scipy-1.6.2-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/f1/2b/83ad25bf3812c5e051adc39b9127af2a009c1124da88aeea3be501758a39/scipy-1.6.2-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: 37f4c2fb904c0ba54163e03993ce3544c9c5cde104bcf90614f17d85bdfbb431 +- filename: threadpoolctl-2.1.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/f7/12/ec3f2e203afa394a149911729357aa48affc59c20e2c1c8297a60f33f133/threadpoolctl-2.1.0-py3-none-any.whl + validation: + type: sha256 + value: 38b74ca20ff3bb42caca8b00055111d74159ee95c4370882bbff2b93d24da725 +- filename: apache_beam-2.28.0-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/d8/bf/ebb27174f5bff3820449258802f4a33af50e14c146305a259e2478c72ad5/apache_beam-2.28.0-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: cd54ad9e51f55465c8d4ce2f4b53ff09f6f482af8cacd07078b3341331196d1f +- filename: pydot-1.4.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/ea/76/75b1bb82e9bad3e3d656556eaa353d8cd17c4254393b08ec9786ac8ed273/pydot-1.4.2-py2.py3-none-any.whl + validation: + type: sha256 + value: 66c98190c65b8d2e2382a441b4c0edfdb4f4c025ef9cb9874de478fb0793a451 +- filename: oauth2client-4.1.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl + validation: + type: sha256 + value: b8a81cc5d60e2d364f0b1b98f958dbd472887acaf1a5b05e21c28c31a2d6d3ac +- filename: avro-python3-1.9.2.1.tar.gz + url: https://files.pythonhosted.org/packages/5a/80/acd1455bea0a9fcdc60a748a97dcbb3ff624726fb90987a0fc1c19e7a5a5/avro-python3-1.9.2.1.tar.gz + validation: + type: sha256 + value: ca1e77a3da5ac98e8833588f71fb2e170b38e34787ee0e04920de0e9470b7d32 +- filename: pyarrow-2.0.0-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/7c/93/23e304a4238d3e776e0ab43dfd4a78f602c8f51ef0c1adca97477f63161e/pyarrow-2.0.0-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: dd661b6598ce566c6f41d31cc1fc4482308613c2c0c808bd8db33b0643192f84 +- filename: requests-2.25.1-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/29/c1/24814557f1d22c56d50280771a17307e6bf87b70727d975fd6b2ce6b014a/requests-2.25.1-py2.py3-none-any.whl + validation: + type: sha256 + value: c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e +- filename: crcmod-1.7.tar.gz + url: https://files.pythonhosted.org/packages/6b/b0/e595ce2a2527e169c3bcd6c33d2473c1918e0b7f6826a043ca1245dd4e5b/crcmod-1.7.tar.gz + validation: + type: sha256 + value: dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e +- filename: numpy-1.19.5-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/66/d7/3b133b17e185f14137bc8afe7a41daf1f31556900f10238312a5ae9c7345/numpy-1.19.5-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: a9d17f2be3b427fbb2bce61e596cf555d6f8a56c222bd2ca148baeeb5e5c783c +- filename: dill-0.3.1.1.tar.gz + url: https://files.pythonhosted.org/packages/c7/11/345f3173809cea7f1a193bfbf02403fff250a3360e0e118a1630985e547d/dill-0.3.1.1.tar.gz + validation: + type: sha256 + value: 42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c +- filename: httplib2-0.17.4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/73/21/e0427ad119361acfe6b41bf39324e4d4d377a30725a26b514232f492b346/httplib2-0.17.4-py3-none-any.whl + validation: + type: sha256 + value: 743cff16beadd128511e786474740264aa805fba106d6fc90e3586829ad0298b +- filename: mock-2.0.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/e6/35/f187bdf23be87092bd0f1200d43d23076cee4d0dec109f195173fd3ebc79/mock-2.0.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 5ce3c71c5545b472da17b72268978914d0252980348636840bd34a00b5cc96c1 +- filename: astroid-2.5.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/03/e3/9f9c3ad230d706dbf2d0314f5cff92f6d3cc7d65226af2854ea59d000c43/astroid-2.5.3-py3-none-any.whl + validation: + type: sha256 + value: bea3f32799fbb8581f58431c12591bc20ce11cbc90ad82e2ea5717d94f2080d5 +- filename: notebook-6.3.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/5d/86/8f951abc6ac651a75a059d2b77fe99fa5df80bf4dc4700c126a0bee486b8/notebook-6.3.0-py3-none-any.whl + validation: + type: sha256 + value: cb271af1e8134e3d6fc6d458bdc79c40cbfc84c1eb036a493f216d58f0880e92 +- filename: Send2Trash-1.5.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/49/46/c3dc27481d1cc57b9385aff41c474ceb7714f7935b1247194adae45db714/Send2Trash-1.5.0-py3-none-any.whl + validation: + type: sha256 + value: f1691922577b6fa12821234aeb57599d887c4900b9ca537948d2dac34aea888b +- filename: argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/e0/d7/5da06217807106ed6d7b4f5ccb8ec5e3f9ec969217faad4b5d1af0b55101/argon2_cffi-20.1.0-cp35-abi3-manylinux1_x86_64.whl + validation: + type: sha256 + value: b160416adc0f012fb1f12588a5e6954889510f82f698e23ed4f4fa57f12a0647 +- filename: async_generator-1.10-py3-none-any.whl + url: https://files.pythonhosted.org/packages/71/52/39d20e03abd0ac9159c162ec24b93fbcaa111e8400308f2465432495ca2b/async_generator-1.10-py3-none-any.whl + validation: + type: sha256 + value: 01c7bf666359b4967d2cda0000cc2e4af16a0ae098cbffcb8472fb9e8ad6585b +- filename: bleach-3.3.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/f0/46/2bbd92086a4c6f051214cb48df6d9132b5f32c5e881d3f4991b16ec7e499/bleach-3.3.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 6123ddc1052673e52bab52cdc955bcb57a015264a1c57d37bea2f6b817af0125 +- filename: entrypoints-0.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/ac/c6/44694103f8c221443ee6b0041f69e2740d89a25641e62fb4f2ee568f2f9c/entrypoints-0.3-py2.py3-none-any.whl + validation: + type: sha256 + value: 589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19 +- filename: ipykernel-5.5.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/3a/7d/9f8ac1b1b76f2f1538b5650f0b5636bae082724b1e06939a3a9d38e1380e/ipykernel-5.5.3-py3-none-any.whl + validation: + type: sha256 + value: 21abd584543759e49010975a4621603b3cf871b1039cb3879a14094717692614 +- filename: jupyter_client-6.1.12-py3-none-any.whl + url: https://files.pythonhosted.org/packages/77/e8/c3cf72a32a697256608d5fa96360c431adec6e1c6709ba7f13f99ff5ee04/jupyter_client-6.1.12-py3-none-any.whl + validation: + type: sha256 + value: e053a2c44b6fa597feebe2b3ecb5eea3e03d1d91cc94351a52931ee1426aecfc +- filename: jupyter_core-4.7.1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/53/40/5af36bffa0af3ac71d3a6fc6709de10e4f6ff7c01745b8bc4715372189c9/jupyter_core-4.7.1-py3-none-any.whl + validation: + type: sha256 + value: 8c6c0cac5c1b563622ad49321d5ec47017bd18b94facb381c6973a0486395f8e +- filename: jupyterlab_pygments-0.1.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/a8/6f/c34288766797193b512c6508f5994b830fb06134fdc4ca8214daba0aa443/jupyterlab_pygments-0.1.2-py2.py3-none-any.whl + validation: + type: sha256 + value: abfb880fd1561987efaefcb2d2ac75145d2a5d0139b1876d5be806e32f630008 +- filename: mistune-0.8.4-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/09/ec/4b43dae793655b7d8a25f76119624350b4d65eb663459eb9603d7f1f0345/mistune-0.8.4-py2.py3-none-any.whl + validation: + type: sha256 + value: 88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4 +- filename: nbclient-0.5.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/22/a6/f3a01a5c1a0e72d1d064f33d4cd9c3a782010f48f48f47f256d0b438994a/nbclient-0.5.3-py3-none-any.whl + validation: + type: sha256 + value: e79437364a2376892b3f46bedbf9b444e5396cfb1bc366a472c37b48e9551500 +- filename: nbconvert-6.0.7-py3-none-any.whl + url: https://files.pythonhosted.org/packages/13/2f/acbe7006548f3914456ee47f97a2033b1b2f3daf921b12ac94105d87c163/nbconvert-6.0.7-py3-none-any.whl + validation: + type: sha256 + value: 39e9f977920b203baea0be67eea59f7b37a761caa542abe80f5897ce3cf6311d +- filename: nbformat-5.1.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/e7/c7/dd50978c637a7af8234909277c4e7ec1b71310c13fb3135f3c8f5b6e045f/nbformat-5.1.3-py3-none-any.whl + validation: + type: sha256 + value: eb8447edd7127d043361bc17f2f5a807626bc8e878c7709a1c647abda28a9171 +- filename: nest_asyncio-1.5.1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/52/e2/9b37da54e6e9094d2f558ae643d1954a0fa8215dfee4fa261f31c5439796/nest_asyncio-1.5.1-py3-none-any.whl + validation: + type: sha256 + value: 76d6e972265063fe92a90b9cc4fb82616e07d586b346ed9d2c89a4187acea39c +- filename: pandocfilters-1.4.3.tar.gz + url: https://files.pythonhosted.org/packages/28/78/bd59a9adb72fa139b1c9c186e6f65aebee52375a747e4b6a6dcf0880956f/pandocfilters-1.4.3.tar.gz + validation: + type: sha256 + value: bc63fbb50534b4b1f8ebe1860889289e8af94a23bff7445259592df25a3906eb +- filename: pyzmq-22.0.3-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/98/f0/848d7850eb8a65f3534c1f4d0e0ba8ba8de2d32a02fa9df1d41a08cc667f/pyzmq-22.0.3-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: 9221783dacb419604d5345d0e097bddef4459a9a95322de6c306bf1d9896559f +- filename: terminado-0.9.4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/47/ad/f7bc3e40570212ed9ccc9ac72d17315574d82fc100eb74d660c31817ddd2/terminado-0.9.4-py3-none-any.whl + validation: + type: sha256 + value: daed77f9fad7b32558fa84b226a76f45a02242c20813502f36c4e1ade6d8f1ad +- filename: testpath-0.4.4-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/1b/9e/1a170feaa54f22aeb5a5d16c9015e82234275a3c8ab630b552493f9cb8a9/testpath-0.4.4-py2.py3-none-any.whl + validation: + type: sha256 + value: bfcf9411ef4bf3db7579063e0546938b1edda3d69f4e1fb8756991f5951f85d4 +- filename: webencodings-0.5.1-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl + validation: + type: sha256 + value: a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 +- filename: papermill-2.3.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/ec/3b/55dbb2017142340a57937f1fad78c7d9373552540b42740e37fd6c40d761/papermill-2.3.3-py3-none-any.whl + validation: + type: sha256 + value: d1dadee33b3b2bcd54664f4736b5ff40786b88e3a460e66131485cd3650a16d0 +- filename: ansiwrap-0.8.4-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/03/50/43e775a63e0d632d9be3b3fa1c9b2cbaf3b7870d203655710a3426f47c26/ansiwrap-0.8.4-py2.py3-none-any.whl + validation: + type: sha256 + value: 7b053567c88e1ad9eed030d3ac41b722125e4c1271c8a99ade797faff1f49fb1 +- filename: textwrap3-0.9.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/77/9c/a53e561d496ee5866bbeea4d3a850b3b545ed854f8a21007c1e0d872e94d/textwrap3-0.9.2-py2.py3-none-any.whl + validation: + type: sha256 + value: bf5f4c40faf2a9ff00a9e0791fed5da7415481054cef45bb4a3cfb1f69044ae0 +- filename: tqdm-4.60.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/72/8a/34efae5cf9924328a8f34eeb2fdaae14c011462d9f0e3fcded48e1266d1c/tqdm-4.60.0-py2.py3-none-any.whl + validation: + type: sha256 + value: daec693491c52e9498632dfbe9ccfc4882a557f5fa08982db1b4d3adbe0887c3 +- filename: Keras-2.4.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/44/e1/dc0757b20b56c980b5553c1b5c4c32d378c7055ab7bfa92006801ad359ab/Keras-2.4.3-py2.py3-none-any.whl + validation: + type: sha256 + value: 05e2faf6885f7899482a7d18fc00ba9655fe2c9296a35ad96949a07a9c27d1bb +- filename: tfx-0.29.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/89/61/52e2bd3a1a3616f2782f5776b9a989049e4167ea17a528b1917f9b3ec1f6/tfx-0.29.0-py3-none-any.whl + validation: + type: sha256 + value: 5b74ab90b6a90794998f502b0bb6a5c1ac29945074fc50900466363932c5c500 +- filename: absl_py-0.12.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/92/c9/ef0fae29182d7a867d203f0eff8296b60da92098cc41db33a434f4be84bf/absl_py-0.12.0-py3-none-any.whl + validation: + type: sha256 + value: afe94e3c751ff81aad55d33ab6e630390da32780110b5af72ae81ecff8418d9e +- filename: astunparse-1.6.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl + validation: + type: sha256 + value: c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8 +- filename: docker-4.4.4-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/c4/22/410313ad554477e87ec406d38d85f810e61ddb0d2fc44e64994857476de9/docker-4.4.4-py2.py3-none-any.whl + validation: + type: sha256 + value: f3607d5695be025fa405a12aca2e5df702a57db63790c73b927eb6a94aac60af +- filename: fasteners-0.16-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/78/20/c862d765287e9e8b29f826749ebae8775bdca50b2cb2ca079346d5fbfd76/fasteners-0.16-py2.py3-none-any.whl + validation: + type: sha256 + value: 74b6847e0a6bb3b56c8511af8e24c40e4cf7a774dfff5b251c260ed338096a4b +- filename: flatbuffers-1.12-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/eb/26/712e578c5f14e26ae3314c39a1bdc4eb2ec2f4ddc89b708cf8e0a0d20423/flatbuffers-1.12-py2.py3-none-any.whl + validation: + type: sha256 + value: 9e9ef47fa92625c4721036e7c4124182668dc6021d9e7c73704edd395648deb9 +- filename: gast-0.3.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/d6/84/759f5dd23fec8ba71952d97bcc7e2c9d7d63bdc582421f3cd4be845f0c98/gast-0.3.3-py2.py3-none-any.whl + validation: + type: sha256 + value: 8f46f5be57ae6889a4e16e2ca113b1703ef17f2b0abceb83793eaba9e1351a45 +- filename: google-apitools-0.5.31.tar.gz + url: https://files.pythonhosted.org/packages/19/da/aefc4cf4c168b5d875344cd9dddc77e3a2d11986b630251af5ce47dd2843/google-apitools-0.5.31.tar.gz + validation: + type: sha256 + value: 4af0dd6dd4582810690251f0b57a97c1873dadfda54c5bc195844c8907624170 +- filename: google_cloud_bigquery-1.28.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/49/18/6aeca7e64efb37f4d4fceaed0cbb7cd861416588240b76c4796fe2e3393c/google_cloud_bigquery-1.28.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 9266e989531f290d3b836dc7b308ac22b350c4d664af19325bd0102261231b71 +- filename: google_cloud_build-2.0.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/91/04/b566b23f3fdea72326efce6aef09e523b6f8ef3058959672f673c41ffaca/google_cloud_build-2.0.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 3ef25489bae0b4a486ff73a51dec70c362a66f0bf83f7f72aaab19864405741c +- filename: google_cloud_datastore-1.15.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/b8/6c/bedcab39e8dc969f7a48d058dbacd69fc07ce3f817a03de875902016f667/google_cloud_datastore-1.15.3-py2.py3-none-any.whl + validation: + type: sha256 + value: 961b75b1d4b09eb044fc59825633efd8495471bf9bc015d989b8639be89ce439 +- filename: google_pasta-0.2.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl + validation: + type: sha256 + value: b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed +- filename: grpcio-1.32.0-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/47/e2/a8516f907bcb7e641f05528b3e661dbb7149ac68478e992eb86afd3cdeeb/grpcio-1.32.0-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: f53f2dfc8ff9a58a993e414a016c8b21af333955ae83960454ad91798d467c7b +- filename: h5py-2.10.0-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/9d/4f/46dbeea4aee767e15725950b6aac2c56c4eff9e5044886aa7ef932319476/h5py-2.10.0-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: d35f7a3a6cefec82bfdad2785e78359a0e6a5fbb3f605dd5623ce88082ccd681 +- filename: ipywidgets-7.6.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/11/53/084940a83a8158364e630a664a30b03068c25ab75243224d6b488800d43a/ipywidgets-7.6.3-py2.py3-none-any.whl + validation: + type: sha256 + value: e6513cfdaf5878de30f32d57f6dc2474da395a2a2991b94d487406c0ab7f55ca +- filename: joblib-0.14.1-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/28/5c/cf6a2b65a321c4a209efcdf64c2689efae2cb62661f8f6f4bb28547cf1bf/joblib-0.14.1-py2.py3-none-any.whl + validation: + type: sha256 + value: bdb4fd9b72915ffb49fde2229ce482dd7ae79d842ed8c2b4c932441495af1403 +- filename: jupyterlab_widgets-1.0.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/18/b5/3473d275e3b2359efdf5768e9df95537308b93a31ad94fa92814ac565826/jupyterlab_widgets-1.0.0-py3-none-any.whl + validation: + type: sha256 + value: caeaf3e6103180e654e7d8d2b81b7d645e59e432487c1d35a41d6d3ee56b3fef +- filename: Keras_Preprocessing-1.1.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/79/4c/7c3275a01e12ef9368a892926ab932b33bb13d55794881e3573482b378a7/Keras_Preprocessing-1.1.2-py2.py3-none-any.whl + validation: + type: sha256 + value: 7b82029b130ff61cc99b55f3bd27427df4838576838c5b2f65940e4fcec99a7b +- filename: keras-tuner-1.0.1.tar.gz + url: https://files.pythonhosted.org/packages/a7/f7/4b41b6832abf4c9bef71a664dc563adb25afc5812831667c6db572b1a261/keras-tuner-1.0.1.tar.gz + validation: + type: sha256 + value: f018ded5127e7c588bd78faa753fa1f4108f1f28c0e5694a06bfb1f08204215b +- filename: ml_metadata-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/1d/b0/7619a528c7766b6bbea974fc55069383c0fc406c12e18daa753b4f586b17/ml_metadata-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: 4fb5c85834461280f0956ba873fa4c8824d842038cdb3bf0a5810b99be86e72d +- filename: ml_pipelines_sdk-0.29.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/f5/81/4b5506b41b1b5fdb1e001224d01b46bc3900e8a20c0307a253868b5cafb7/ml_pipelines_sdk-0.29.0-py3-none-any.whl + validation: + type: sha256 + value: be4fc6cd6840ff0930189182c9006b68728462ae7cc2d06e938839a069bf30e2 +- filename: opt_einsum-3.3.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/bc/19/404708a7e54ad2798907210462fd950c3442ea51acc8790f3da48d2bee8b/opt_einsum-3.3.0-py3-none-any.whl + validation: + type: sha256 + value: 2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147 +- filename: promise-2.3.tar.gz + url: https://files.pythonhosted.org/packages/cf/9c/fb5d48abfe5d791cd496e4242ebcf87a4bb2e0c3dcd6e0ae68c11426a528/promise-2.3.tar.gz + validation: + type: sha256 + value: dfd18337c523ba4b6a58801c164c1904a9d4d1b1747c7d5dbf45b693a49d93d0 +- filename: tensorboard-2.4.1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/64/21/eebd23060763fedeefb78bc2b286e00fa1d8abda6f70efa2ee08c28af0d4/tensorboard-2.4.1-py3-none-any.whl + validation: + type: sha256 + value: 7b8c53c396069b618f6f276ec94fc45d17e3282d668979216e5d30be472115e4 +- filename: tensorflow_datasets-3.0.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/76/41/8404fabb295025c1ced13bb150246f75770619889d8637afa523a4d09cdb/tensorflow_datasets-3.0.0-py3-none-any.whl + validation: + type: sha256 + value: 8e7a79b9aef0e04043fdac4644f145bb8d8476def39645944bd2b8bb8f54cd63 +- filename: tensorflow_metadata-0.29.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/cc/22/9fad290358dc908bbb07d5613c06e20300eb7fda400417024e637d18fb4c/tensorflow_metadata-0.29.0-py3-none-any.whl + validation: + type: sha256 + value: 0db72175b8439187a9b0b91f599590bf61c68c85bfbeb5d228d18e4e761ea067 +- filename: tensorflow_cloud-0.1.13-py3-none-any.whl + url: https://files.pythonhosted.org/packages/d0/f5/0ac7277236d2d3ea66220a219c2b9a40ed34e0bfc3b387cbd7f745dcfb30/tensorflow_cloud-0.1.13-py3-none-any.whl + validation: + type: sha256 + value: 07bdd1811e3e4b786977f590aa37c0b83e1f5ac1b4875315449cbe21a1a29efc +- filename: tensorflow_hub-0.9.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/ac/83/a7df82744a794107641dad1decaad017d82e25f0e1f761ac9204829eef96/tensorflow_hub-0.9.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 9f8820291397a17c67a93266ba8d5f53fce71339f10344eeb4fc484307137c88 +- filename: tensorflow_data_validation-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/50/bc/02d8187422d502b2fadac93c14c6a7d7d4e2f8afda3ecbb9c2a669115e20/tensorflow_data_validation-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: f137911f9f0d96250ad9a5a5d279a7c628bdcb4ba2ada9cea0dfb051d800997e +- filename: tensorflow_model_analysis-0.29.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/da/df/f07397fad508ba3fcd75081455db2fb7ce63361c93be710ebe1a81d35eb0/tensorflow_model_analysis-0.29.0-py3-none-any.whl + validation: + type: sha256 + value: 1e5c3d33720c28797fe5be6dd2f71de79e6f3f8302ee4aa52e44749facc772fc +- filename: tensorflow_serving_api-2.4.1-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/5f/a2/16169df906a0a342007ced647199e16163841fc4be7106a493ee42ef6a27/tensorflow_serving_api-2.4.1-py2.py3-none-any.whl + validation: + type: sha256 + value: 11ebbc6a0f39542c10e6de80d187357c4c930c06a57a8a2ef539341be9a7c470 +- filename: tensorflow_transform-0.29.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/4d/85/a42fa673bb613ee97c98f58e1c7f38df9257ae9d33c75f665a2e6ae5d8f3/tensorflow_transform-0.29.0-py3-none-any.whl + validation: + type: sha256 + value: d6cd71d772db83b832e4232d8dc390b3ad7e2a16dcd89372ab4087fd5e66a3bf +- filename: terminaltables-3.1.0.tar.gz + url: https://files.pythonhosted.org/packages/9b/c4/4a21174f32f8a7e1104798c445dacdc1d4df86f2f26722767034e4de4bff/terminaltables-3.1.0.tar.gz + validation: + type: sha256 + value: f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81 +- filename: tfx_bsl-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/96/79/f9819d1595b48e291ed28f175ec112669e9654bbf3c5c7e95e76f93f56d8/tfx_bsl-0.29.0-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: 9c04f931550829924b1b4b90eac1cc7b2bea873a62d2f0ae534bdf55e9b511b9 +- filename: widgetsnbextension-3.5.1-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/6c/7b/7ac231c20d2d33c445eaacf8a433f4e22c60677eb9776c7c5262d7ddee2d/widgetsnbextension-3.5.1-py2.py3-none-any.whl + validation: + type: sha256 + value: bd314f8ceb488571a5ffea6cc5b9fc6cba0adaf88a9d2386b93a489751938bcd +- filename: tensorflow-2.4.1-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/ac/9b/3fdbce9195fe53adbab1a930ee95a957af18c34a83ae5b1145f3cf8da409/tensorflow-2.4.1-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: efa9daa4b3701a4e439b24b74c1e4b66844aee8ae5263fb3cc12281ac9cc9f67 +- filename: tensorflow_estimator-2.4.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/74/7e/622d9849abf3afb81e482ffc170758742e392ee129ce1540611199a59237/tensorflow_estimator-2.4.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 5b7b7bf2debe19a8794adacc43e8ba6459daa4efaf54d3302623994a359b17f0 +- filename: tensorboard_plugin_wit-1.8.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/1a/c1/499e600ba0c618b451cd9c425ae1c177249940a2086316552fee7d86c954/tensorboard_plugin_wit-1.8.0-py3-none-any.whl + validation: + type: sha256 + value: 2a80d1c551d741e99b2f197bb915d8a133e24adb8da1732b840041860f91183a +- filename: Cython-0.29.23-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/40/67/36322cf0387cf65e6be80ba2d9a33db227ecbc624902f0cb2e4bf456261f/Cython-0.29.23-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: ceccc03b633113ede1f14ad914a6db5c278ce108c8ddb308a5c01c1567d8a02a +- filename: dataclasses-0.6-py3-none-any.whl + url: https://files.pythonhosted.org/packages/26/2f/1095cdc2868052dd1e64520f7c0d5c8c550ad297e944e641dbf1ffbb9a5d/dataclasses-0.6-py3-none-any.whl + validation: + type: sha256 + value: 454a69d788c7fda44efd71e259be79577822f5e3f53f029a22d08004e951dc9f +- filename: dm_tree-0.1.6-cp38-cp38-manylinux_2_24_x86_64.whl + url: https://files.pythonhosted.org/packages/d2/ba/fa51c09ee73d017feb982a9db531bf0d889737d2771f9dd4792bfa7d114f/dm_tree-0.1.6-cp38-cp38-manylinux_2_24_x86_64.whl + validation: + type: sha256 + value: e87d06478356a2d92c3940dedebcd92a14ad37fba10ebb1839c8140693b83c0a +- filename: gin_config-0.4.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/d7/b1/c4950247902f430376c7d9c8a7811269150e66e0207b74330de181dd6779/gin_config-0.4.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 774aa7855cd7eca839e796e394159a96060660296b3ca9fbbbf9af427fd152ba +- filename: kaggle-1.5.12.tar.gz + url: https://files.pythonhosted.org/packages/3a/e7/3bac01547d2ed3d308ac92a0878fbdb0ed0f3d41fb1906c319ccbba1bfbc/kaggle-1.5.12.tar.gz + validation: + type: sha256 + value: b4d87d107bff743aaa805c2b382c3661c4c175cdb159656d4972be2a9cef42cb +- filename: opencv_python_headless-4.5.1.48-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/1b/cc/33a4e8034b86f3399b1c4e9f5976968b8b83d9baac1728f0e44bed8385a0/opencv_python_headless-4.5.1.48-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 7c75680ffdf32d7044415a215d1fc60dbec14a7f2f0b59a85f0f74ef5efcb6ad +- filename: py-cpuinfo-8.0.0.tar.gz + url: https://files.pythonhosted.org/packages/e6/ba/77120e44cbe9719152415b97d5bfb29f4053ee987d6cb63f55ce7d50fadc/py-cpuinfo-8.0.0.tar.gz + validation: + type: sha256 + value: 5f269be0e08e33fd959de96b34cd4aeeeacac014dd8305f70eb28d06de2345c5 +- filename: sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/3b/e6/8aef9ea5b47f3334fa763813b7372b4ac46a931546875d89b94396b727e2/sentencepiece-0.1.95-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 77dff55aa8f74e36f7fd7df861723574630327fdfff0ca18fdbb4fe031c9ecbe +- filename: seqeval-1.2.2.tar.gz + url: https://files.pythonhosted.org/packages/9d/2d/233c79d5b4e5ab1dbf111242299153f3caddddbb691219f363ad55ce783d/seqeval-1.2.2.tar.gz + validation: + type: sha256 + value: f28e97c3ab96d6fcd32b648f6438ff2e09cfba87f05939da9b3970713ec56e6f +- filename: tensorflow_addons-0.12.1-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/08/ac/c5a37833dd71acbb6ccc40847680f2882231acb6dca4c19a2b975f3a358d/tensorflow_addons-0.12.1-cp38-cp38-manylinux2010_x86_64.whl + validation: + type: sha256 + value: 288919ec1debf0bc56357fc1db6dccd27389d446b214042cd4de39d7edabdad6 +- filename: tensorflow_model_optimization-0.5.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/55/38/4fd48ea1bfcb0b6e36d949025200426fe9c3a8bfae029f0973d85518fa5a/tensorflow_model_optimization-0.5.0-py2.py3-none-any.whl + validation: + type: sha256 + value: 06db9b86d871e1dcc40a90515cf0a0f3228ac71cac3f4c49b5c2aef96f45852b +- filename: tensorflow_ranking-0.3.3-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/5b/71/e426e89cb2142e103bc7b272c4ae4b3fa11f9cecef110c8a24b0eaa7c6f9/tensorflow_ranking-0.3.3-py2.py3-none-any.whl + validation: + type: sha256 + value: a2ffbe242132d767150ca5bc8840c676764fcc7f34d7f7b198edba069583c8f0 +- filename: tf_models_official-2.4.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/57/4a/23a08f8fd2747867ee223612e219eeb0d11c36116601d99b55ef3c72e707/tf_models_official-2.4.0-py2.py3-none-any.whl + validation: + type: sha256 + value: e3d60e0feab1d4f759223cb7ffc2f2c44d0a16925c12c2db317ae2b4e0727cd8 +- filename: tf_slim-1.1.0-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/02/97/b0f4a64df018ca018cc035d44f2ef08f91e2e8aa67271f6f19633a015ff7/tf_slim-1.1.0-py2.py3-none-any.whl + validation: + type: sha256 + value: fa2bab63b3925bd42601102e7f178dce997f525742596bf404fa8a6918e146ff +- filename: typeguard-2.12.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/06/1f/c10ad900a10e1421b85d20f1c9d1748469ef5a34296693a02be887af5f95/typeguard-2.12.0-py3-none-any.whl + validation: + type: sha256 + value: 7d1cf82b35e9ff3cd083133ebda54ad1d7a40296471397e6c6b229cf07fe5307 +- filename: pycocotools-2.0.2.tar.gz + url: https://files.pythonhosted.org/packages/de/df/056875d697c45182ed6d2ae21f62015896fdb841906fe48e7268e791c467/pycocotools-2.0.2.tar.gz + validation: + type: sha256 + value: 24717a12799b4471c2e54aa210d642e6cd4028826a1d49fcc2b0e3497e041f1a +- filename: tensorflow_text-2.4.3-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/bb/55/6b3480e85433613183aa9faf78befbd62cc6865748c89b1be32ea5c67517/tensorflow_text-2.4.3-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: 980de462d5c790ee790772236432b1b2ba5d698e10ad74e337338e1c2b26a263 +- filename: tf_utils-1.0.4-py3-none-any.whl + url: https://files.pythonhosted.org/packages/bb/bf/f6800f5d34c2563849a900abaa8e8fdb44e859f9a45e45c35afcfd77d742/tf_utils-1.0.4-py3-none-any.whl + validation: + type: sha256 + value: 7926051c1ccb61bfb6c0e4111d93fd01b37183a101f3f134ff2ffb443daaa14c +- filename: nltk-3.6.1-py3-none-any.whl + url: https://files.pythonhosted.org/packages/8c/1c/c0981ef85165eb739c10f2b24d7729cef066b2bc220fbd1dd0d3c67df39a/nltk-3.6.1-py3-none-any.whl + validation: + type: sha256 + value: 1235660f52ab10fda34d5277096724747f767b2903e1c0c4e14bde013552c9ba +- filename: spacy-3.0.5-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/e1/63/ba49424fb285ae0a79bf2eda75aa6bc5e9ed9be939f04039705c25fb8880/spacy-3.0.5-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: f43a236ad2f385b61a765690cbc64bf81907ecb5dfb5643b42d63ee883c879d8 +- filename: spacy_legacy-3.0.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/78/d8/e25bc7f99877de34def57d36769f0cce4e895b374cdc766718efc724f9ac/spacy_legacy-3.0.2-py2.py3-none-any.whl + validation: + type: sha256 + value: 30cec22dd3171e0280ffe07b9305865db804c6a850f1efcf5196e2a4111e6f8d +- filename: blis-0.7.4-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/06/34/e896b84f7d2e3d61e9b5718670025988eae81ac10deb5c33979cd633e1de/blis-0.7.4-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 445e4838b809e99677f5c0982fb9af320f0d91328fb28c8097e5f1173c4df9d6 +- filename: catalogue-2.0.3-py3-none-any.whl + url: https://files.pythonhosted.org/packages/82/a5/b5021c74c04cac35a27d34cbf3146d86eb8e173b4491888bc4908c4c8b3b/catalogue-2.0.3-py3-none-any.whl + validation: + type: sha256 + value: ea9626fe3dffe2c17c2e8dad9edf689acb08b980babfa96f698687305cc0a194 +- filename: cymem-2.0.5-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/36/5a/04fcc4f69d519d4ab7de1ed503f9ca723d54c6e363c1276296efcd11b82c/cymem-2.0.5-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 734d82d0d03c2ceb929bc1744c04dbe0a105e68a4947c8406056a36f86c41830 +- filename: murmurhash-1.0.5-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/28/2d/82344220ac7399be6cf6263aba8bab04fd613cb7d785569a0c0d580cb0c0/murmurhash-1.0.5-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: b9292c532538cf47846ca81056cfeab08b877c35fe7521d6524aa92ddcd833e2 +- filename: pathy-0.4.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a2/53/97dc0197cca9357369b3b71bf300896cf2d3604fa60ffaaf5cbc277de7de/pathy-0.4.0-py3-none-any.whl + validation: + type: sha256 + value: 2f254d2241916614323e8a3c5e3dccf22484d9a3de9b385271bb3b629dcfab7b +- filename: preshed-3.0.5-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/c9/6d/61508f4cc1166cce7b2951f4fbcebec5b261479e37cc3341672a3281c657/preshed-3.0.5-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 5e06a49477bd257eea02bf823b5d3e201d00a19d6976523a58da8606b2358481 +- filename: pydantic-1.7.3-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/3a/81/373c68f9716991a2c02dcd9b035777d2fa520d3819d43642dfb452ef3bbd/pydantic-1.7.3-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 24ca47365be2a5a3cc3f4a26dcc755bcdc9f0036f55dcedbd55663662ba145ec +- filename: smart_open-3.0.0.tar.gz + url: https://files.pythonhosted.org/packages/11/9a/ba2d5f67f25e8d5bbf2fcec7a99b1e38428e83cb715f64dd179ca43a11bb/smart_open-3.0.0.tar.gz + validation: + type: sha256 + value: 7f4e85b71df5a3618f5447d0b417b7a3576308c839690a24a70338b8993684c3 +- filename: srsly-2.4.1-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/86/57/3911f886b208eacd42fe88683818d44e63c6cfeb816105b9a55f0fe2916b/srsly-2.4.1-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: ff36dc01df8890a239e5d15cffa3ae3b272c19e5ae279840f2d30085d361c20a +- filename: thinc-8.0.2-cp38-cp38-manylinux2014_x86_64.whl + url: https://files.pythonhosted.org/packages/34/d3/34fe47428ee0cc7055b296f3242acd93dd53ba08621e30d4986f75e66b7d/thinc-8.0.2-cp38-cp38-manylinux2014_x86_64.whl + validation: + type: sha256 + value: 53bb0ebc1203ccb3ede90470f9bf41aea6e20568671e5f1a3f1a5345d46a3a28 +- filename: typer-0.3.2-py3-none-any.whl + url: https://files.pythonhosted.org/packages/90/34/d138832f6945432c638f32137e6c79a3b682f06a63c488dcfaca6b166c64/typer-0.3.2-py3-none-any.whl + validation: + type: sha256 + value: ba58b920ce851b12a2d790143009fa00ac1d05b3ff3257061ff69dbdfc3d161b +- filename: gensim-4.0.1-cp38-cp38-manylinux1_x86_64.whl + url: https://files.pythonhosted.org/packages/cf/2a/32fc28ec0f0b58589cb899cb8617d2a124bd31305e8dfd77045e952f0636/gensim-4.0.1-cp38-cp38-manylinux1_x86_64.whl + validation: + type: sha256 + value: 5c0cb64d8c6df7e61497cc9d23fdbf552eb18d6d39341271b647d2e84d970e00 +- filename: wasabi-0.8.2-py3-none-any.whl + url: https://files.pythonhosted.org/packages/a6/1d/d281571b4c3b20fff183b485c6673c62878727119a849c7932651a8b5060/wasabi-0.8.2-py3-none-any.whl + validation: + type: sha256 + value: a493e09d86109ec6d9e70d040472f9facc44634d4ae6327182f94091ca73a490 + +# List of project maintainers +maintainers: +- name: "Austin Denton" + username: "austindenton" + email: "austindenton@seed-innovations.com" + cht_member: false \ No newline at end of file -- GitLab From 5abc8f19eabbf291a75abc3a025ad7bab7267998 Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Tue, 27 Apr 2021 18:59:23 -0600 Subject: [PATCH 2/6] Initial commit --- hardening_manifest.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 801346d..331180a 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -2,7 +2,7 @@ apiVersion: v1 # The repository name in registry1, excluding /ironbank/ -name: "bitnami/airflow-scheduler" +name: "aiml/airflow/airflow-scheduler" # List of tags to push for the repository in registry1 # The most specific version should be the first tag and will be shown @@ -12,8 +12,8 @@ tags: # Build args passed to Dockerfile ARGs args: - BASE_IMAGE: "redhat/ubi/ubi8" - BASE_TAG: "8.3" + BASE_IMAGE: "bitnami/airflow-scheduler" + BASE_TAG: "2.0.1" # Docker image labels labels: @@ -36,9 +36,6 @@ labels: # List of resources to make available to the offline build context resources: - # CHANGE ME -- tag: bitnami/airflow-scheduler:2.0.1-debian-10-r55 - url: docker://docker.io/bitnami/airflow-scheduler@sha256:b9e5a2196d9f303bdb3d674a703fc106d37beeb0eb7d5b541deaf27c7b3428e6 - filename: matplotlib-3.4.1-cp38-cp38-manylinux1_x86_64.whl url: https://files.pythonhosted.org/packages/d4/2c/10224fd2eb8a27f415509d5e35e2945a47856c6128c6027a59a8ffa4016a/matplotlib-3.4.1-cp38-cp38-manylinux1_x86_64.whl validation: -- GitLab From ca1720be7139f532cbaf530e726dfd7b7e01aa68 Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Fri, 7 May 2021 16:40:59 -0600 Subject: [PATCH 3/6] Remove redundant code and update libraries --- Dockerfile | 21 +-------------------- hardening_manifest.yaml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 29 deletions(-) diff --git a/Dockerfile b/Dockerfile index c57511c..9d957c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,6 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ARG BITNAMI_HOME=/opt/bitnami ARG BITNAMI_DIR=/bitnami -ENV BITNAMI_PKG_EXTRA_DIRS="/opt/bitnami/airflow/dags" \ - HOME="/" \ - OS_ARCH="amd64" \ - OS_FLAVOUR="debian-10" \ - OS_NAME="linux" - USER root RUN dnf update -y --nodocs && \ @@ -31,19 +25,6 @@ RUN source /opt/bitnami/airflow/venv/bin/activate && \ dnf clean all && \ rm -rf /var/cache/dnf -ENV AIRFLOW_HOME="/opt/bitnami/airflow" \ - BITNAMI_APP_NAME="airflow-scheduler" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r54" \ - LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/airflow/venv/lib/python3.8/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \ - LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \ - LNAME="airflow" \ - NSS_WRAPPER_GROUP="/opt/bitnami/airflow/nss_group" \ - NSS_WRAPPER_PASSWD="/opt/bitnami/airflow/nss_passwd" \ - PATH="/opt/bitnami/common/bin:/opt/bitnami/python/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/airflow/venv/bin:$PATH" - USER 1001 -HEALTHCHECK --start-period=10s CMD bash -c 'airflow version' || exit 1 - -ENTRYPOINT [ "/opt/bitnami/scripts/airflow-scheduler/entrypoint.sh" ] -CMD [ "/opt/bitnami/scripts/airflow-scheduler/run.sh" ] +HEALTHCHECK --start-period=10s CMD bash -c 'airflow version' || exit 1 \ No newline at end of file diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 331180a..f2d2f2b 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -56,21 +56,21 @@ resources: validation: type: sha256 value: 1d8a5ae1ff6c5cf9b93e8811e581232ad8920aeec647c37316ceac982b08cb2d -- filename: kafka-1.3.5-py2.py3-none-any.whl - url: https://files.pythonhosted.org/packages/21/71/73286e748ac5045b6a669c2fe44b03ac4c5d3d2af9291c4c6fc76438a9a9/kafka-1.3.5-py2.py3-none-any.whl +- filename: kafka_python-2.0.2-py2.py3-none-any.whl + url: https://files.pythonhosted.org/packages/75/68/dcb0db055309f680ab2931a3eeb22d865604b638acf8c914bedf4c1a0c8c/kafka_python-2.0.2-py2.py3-none-any.whl validation: type: sha256 - value: 35a49e9a432f6792aad48b2ab09d03867357aaa06eacba2678b7fd0808156e5c + value: 2d92418c7cb1c298fa6c7f0fb3519b520d0d7526ac6cb7ae2a4fc65a51a94b6e - filename: sklearn-0.0.tar.gz url: https://files.pythonhosted.org/packages/1e/7a/dbb3be0ce9bd5c8b7e3d87328e79063f8b263b2b1bfa4774cb1147bfcd3f/sklearn-0.0.tar.gz validation: type: sha256 value: e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31 -- filename: scikit_learn-0.24.1-cp38-cp38-manylinux2010_x86_64.whl - url: https://files.pythonhosted.org/packages/6e/c0/39aee6ef61f586f3c1aa76d4f35485556e2eb86136a5f1f1ee8b62fae3ee/scikit_learn-0.24.1-cp38-cp38-manylinux2010_x86_64.whl +- filename: scikit_learn-0.24.2-cp38-cp38-manylinux2010_x86_64.whl + url: https://files.pythonhosted.org/packages/36/dd/06b6f0ad7b86c3edc3a02d255f3fcc98e444a847cea10b3a0182251ca7b6/scikit_learn-0.24.2-cp38-cp38-manylinux2010_x86_64.whl validation: type: sha256 - value: 259ec35201e82e2db1ae2496f229e63f46d7f1695ae68eef9350b00dc74ba52f + value: 62214d2954377fcf3f31ec867dd4e436df80121e7a32947a0b3244f58f45e455 - filename: scipy-1.6.2-cp38-cp38-manylinux1_x86_64.whl url: https://files.pythonhosted.org/packages/f1/2b/83ad25bf3812c5e051adc39b9127af2a009c1124da88aeea3be501758a39/scipy-1.6.2-cp38-cp38-manylinux1_x86_64.whl validation: @@ -126,11 +126,11 @@ resources: validation: type: sha256 value: 42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c -- filename: httplib2-0.17.4-py3-none-any.whl - url: https://files.pythonhosted.org/packages/73/21/e0427ad119361acfe6b41bf39324e4d4d377a30725a26b514232f492b346/httplib2-0.17.4-py3-none-any.whl +- filename: httplib2-0.19.0-py3-none-any.whl + url: https://files.pythonhosted.org/packages/15/7e/51e5bd333c0afa1c7bdbf98eb3b0ccf5167e2b1ecc8b4d13e9cc29291f81/httplib2-0.19.0-py3-none-any.whl validation: type: sha256 - value: 743cff16beadd128511e786474740264aa805fba106d6fc90e3586829ad0298b + value: 749c32603f9bf16c1277f59531d502e8f1c2ca19901ae653b49c4ed698f0820e - filename: mock-2.0.0-py2.py3-none-any.whl url: https://files.pythonhosted.org/packages/e6/35/f187bdf23be87092bd0f1200d43d23076cee4d0dec109f195173fd3ebc79/mock-2.0.0-py2.py3-none-any.whl validation: -- GitLab From 87f456fa04c84286c5bd1b1eb19895dcd6b7f39a Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Fri, 7 May 2021 16:47:53 -0600 Subject: [PATCH 4/6] Fix base image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d957c6..5c80079 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -ARG BASE_REGISTRY=registry.il2.dso.mil -ARG BASE_IMAGE=jaic-devsecops/apps/bitnami/airflow-scheduler -ARG BASE_TAG=hardened-2.0.1-debian-10-r55 +ARG BASE_REGISTRY=registry1.dso.mil +ARG BASE_IMAGE=ironbank/bitnami/airflow-scheduler +ARG BASE_TAG=2.0.1 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ARG BITNAMI_HOME=/opt/bitnami -- GitLab From 7a56f1596412c3f1728a7a770890ef6eb2f31b86 Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Wed, 12 May 2021 07:11:23 -0600 Subject: [PATCH 5/6] Update application to 2.0.2 --- Dockerfile | 2 +- README.md | 8 +++++--- hardening_manifest.yaml | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5c80079..4d120c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG BASE_REGISTRY=registry1.dso.mil ARG BASE_IMAGE=ironbank/bitnami/airflow-scheduler -ARG BASE_TAG=2.0.1 +ARG BASE_TAG=2.0.2 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ARG BITNAMI_HOME=/opt/bitnami diff --git a/README.md b/README.md index f4f9970..ac2be1b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ > Airflow is a platform to programmatically author, schedule and monitor workflows. Airflow Scheduler is one of the required components when the CeleryExecutor is configured. https://airflow.apache.org/ - +### Ironbank Hardened Image Notes: +* apache-airflow-providers-elasticsearch will not work on this image due to vulnerabilities with Elasticsearch 7.5.1 (Removed) +* This image contains many AIML python libraries that are available for use; please see the hardening_manifest for further details # TL;DR ## Docker Compose @@ -33,8 +35,8 @@ You can find the default credentials and available configuration options in the 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/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/2.0.1-debian-10-r53/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r19` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/1.10.15-debian-10-r19/1/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/2.0.2-debian-10-r18/2/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r51` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-scheduler/blob/1.10.15-debian-10-r51/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow-scheduler). diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index f2d2f2b..be69487 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,12 +8,12 @@ name: "aiml/airflow/airflow-scheduler" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: -- "2.0.1" +- "2.0.2" # Build args passed to Dockerfile ARGs args: BASE_IMAGE: "bitnami/airflow-scheduler" - BASE_TAG: "2.0.1" + BASE_TAG: "2.0.2" # Docker image labels labels: @@ -26,7 +26,7 @@ labels: org.opencontainers.image.url: "https://bitnami.com/stack/airflow-scheduler/containers" ## Name of the distributing entity, organization or individual org.opencontainers.image.vendor: "Bitnami" - org.opencontainers.image.version: "2.0.1" + org.opencontainers.image.version: "2.0.2" ## Keywords to help with search (ex. "cicd,gitops,golang") mil.dso.ironbank.image.keywords: "workflows,orchestration,pipelines" ## This value can be "opensource" or "commercial" -- GitLab From c58254cbbbf1ab15cb90bf8eb361e6e8984089bc Mon Sep 17 00:00:00 2001 From: Austin Denton Date: Wed, 12 May 2021 23:00:44 -0400 Subject: [PATCH 6/6] Remove file flagging false positives --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 4d120c7..f94598d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ COPY *.whl *.tar.gz /local/wheels/ RUN source /opt/bitnami/airflow/venv/bin/activate && \ for f in $(ls -l /local/wheels | awk '{print $9}' |sed '/^$/d'); do pip install --no-index --no-deps /local/wheels/$f; done && \ find /opt/bitnami/airflow/venv/lib/python3.8/site-packages -name "*.pem" -o -name "*.key" | egrep ".*test.*/.*\.pem|.*test.*/.*\.key" | xargs rm -f && \ + rm /opt/bitnami/airflow/venv/lib/python3.8/site-packages/tensorflow/include/external/local_config_python/python_include/patchlevel.h && \ rm -rf /local/* && \ dnf -y remove gcc && \ dnf clean all && \ -- GitLab