337 строки
13 KiB
Docker
337 строки
13 KiB
Docker
# 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.
|
|
#
|
|
# WARNING: THIS DOCKERFILE IS NOT INTENDED FOR PRODUCTION USE OR DEPLOYMENT.
|
|
#
|
|
# Base image for the whole Docker file
|
|
ARG APT_DEPS_IMAGE="airflow-apt-deps-ci-slim"
|
|
ARG PYTHON_BASE_IMAGE="python:3.6-slim-stretch"
|
|
############################################################################################################
|
|
# This is the slim image with APT dependencies needed by Airflow. It is based on a python slim image
|
|
# Parameters:
|
|
# PYTHON_BASE_IMAGE - base python image (python:x.y-slim-stretch)
|
|
############################################################################################################
|
|
FROM ${PYTHON_BASE_IMAGE} as airflow-apt-deps-ci-slim
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]
|
|
|
|
ARG PYTHON_BASE_IMAGE="python:3.6-slim-stretch"
|
|
ENV PYTHON_BASE_IMAGE=${PYTHON_BASE_IMAGE}
|
|
|
|
ARG AIRFLOW_VERSION="2.0.0.dev0"
|
|
ENV AIRFLOW_VERSION=$AIRFLOW_VERSION
|
|
|
|
# Print versions
|
|
RUN echo "Base image: ${PYTHON_BASE_IMAGE}"
|
|
RUN echo "Airflow version: ${AIRFLOW_VERSION}"
|
|
|
|
# Make sure noninteractie debian install is used and language variables set
|
|
ENV DEBIAN_FRONTEND=noninteractive LANGUAGE=C.UTF-8 LANG=C.UTF-8 LC_ALL=C.UTF-8 \
|
|
LC_CTYPE=C.UTF-8 LC_MESSAGES=C.UTF-8
|
|
|
|
# By increasing this number we can do force build of all dependencies
|
|
ARG DEPENDENCIES_EPOCH_NUMBER="1"
|
|
# Increase the value below to force renstalling of all dependencies
|
|
ENV DEPENDENCIES_EPOCH_NUMBER=${DEPENDENCIES_EPOCH_NUMBER}
|
|
|
|
# Install curl and gnupg2 - needed to download nodejs in the next step
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
curl \
|
|
gnupg2 \
|
|
&& apt-get autoremove -yqq --purge \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
# Install basic apt dependencies
|
|
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
apt-utils \
|
|
build-essential \
|
|
curl \
|
|
dirmngr \
|
|
freetds-bin \
|
|
freetds-dev \
|
|
git \
|
|
gosu \
|
|
libffi-dev \
|
|
libkrb5-dev \
|
|
libpq-dev \
|
|
libsasl2-2 \
|
|
libsasl2-dev \
|
|
libsasl2-modules \
|
|
libssl-dev \
|
|
locales \
|
|
netcat \
|
|
nodejs \
|
|
rsync \
|
|
sasl2-bin \
|
|
sudo \
|
|
&& apt-get autoremove -yqq --purge \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install MySQL client from Oracle repositories (Debian installs mariadb)
|
|
RUN KEY="A4A9406876FCBD3C456770C88C718D3B5072E1F5" \
|
|
&& GNUPGHOME="$(mktemp -d)" \
|
|
&& export GNUPGHOME \
|
|
&& for KEYSERVER in $(shuf -e \
|
|
ha.pool.sks-keyservers.net \
|
|
hkp://p80.pool.sks-keyservers.net:80 \
|
|
keyserver.ubuntu.com \
|
|
hkp://keyserver.ubuntu.com:80 \
|
|
pgp.mit.edu) ; do \
|
|
gpg --keyserver "${KEYSERVER}" --recv-keys "${KEY}" && break || true ; \
|
|
done \
|
|
&& gpg --export "${KEY}" | apt-key add - \
|
|
&& gpgconf --kill all \
|
|
rm -rf "${GNUPGHOME}"; \
|
|
apt-key list > /dev/null \
|
|
&& echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-5.6" | tee -a /etc/apt/sources.list.d/mysql.list \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
libmysqlclient-dev \
|
|
mysql-client \
|
|
&& apt-get autoremove -yqq --purge \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN adduser airflow \
|
|
&& echo "airflow ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/airflow \
|
|
&& chmod 0440 /etc/sudoers.d/airflow
|
|
|
|
############################################################################################################
|
|
# This is an image with all APT dependencies needed by CI. It is built on top of the airlfow APT image
|
|
# Parameters:
|
|
# airflow-apt-deps - this is the base image for CI deps image.
|
|
############################################################################################################
|
|
FROM airflow-apt-deps-ci-slim as airflow-apt-deps-ci
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]
|
|
|
|
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
|
|
|
|
ARG APT_DEPS_IMAGE="airflow-apt-deps-ci-slim"
|
|
ENV APT_DEPS_IMAGE=${APT_DEPS_IMAGE}
|
|
|
|
RUN echo "${APT_DEPS_IMAGE}"
|
|
|
|
# Note the ifs below might be removed if Buildkit will become usable. It should skip building this
|
|
# image automatically if it is not used. For now we still go through all layers below but they are empty
|
|
RUN if [[ "${APT_DEPS_IMAGE}" == "airflow-apt-deps-ci" ]]; then \
|
|
# Note missing man directories on debian-stretch
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
|
mkdir -pv /usr/share/man/man1 \
|
|
&& mkdir -pv /usr/share/man/man7 \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
gnupg \
|
|
krb5-user \
|
|
ldap-utils \
|
|
less \
|
|
lsb-release \
|
|
net-tools \
|
|
openjdk-8-jdk \
|
|
openssh-client \
|
|
openssh-server \
|
|
postgresql-client \
|
|
python-selinux \
|
|
sqlite3 \
|
|
tmux \
|
|
unzip \
|
|
vim \
|
|
&& apt-get autoremove -yqq --purge \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
;\
|
|
fi
|
|
|
|
# TODO: We should think about removing those and moving them into docker-compose dependencies.
|
|
COPY scripts/ci/docker_build/ci_build_install_deps.sh /tmp/ci_build_install_deps.sh
|
|
|
|
RUN if [[ "${APT_DEPS_IMAGE}" == "airflow-apt-deps-ci" ]]; then /tmp/ci_build_install_deps.sh; fi
|
|
|
|
ENV PATH "${PATH}:/tmp/hive/bin"
|
|
|
|
############################################################################################################
|
|
# This is the target image - it installs PIP and NPM dependencies including efficient caching
|
|
# mechanisms - it might be used to build the bare airflow build or CI build
|
|
# Parameters:
|
|
# APT_DEPS_IMAGE - image with APT dependencies. It might either be base deps image with airflow
|
|
# dependencies or CI deps image that contains also CI-required dependencies
|
|
############################################################################################################
|
|
FROM ${APT_DEPS_IMAGE} as main
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]
|
|
|
|
RUN echo "Airflow version: ${AIRFLOW_VERSION}"
|
|
|
|
ARG AIRFLOW_USER=airflow
|
|
ENV AIRFLOW_USER=${AIRFLOW_USER}
|
|
|
|
ARG HOME=/home/airflow
|
|
ENV HOME=${HOME}
|
|
|
|
ARG AIRFLOW_HOME=${HOME}/airflow
|
|
ENV AIRFLOW_HOME=${AIRFLOW_HOME}
|
|
|
|
ARG AIRFLOW_SOURCES=/opt/airflow
|
|
ENV AIRFLOW_SOURCES=${AIRFLOW_SOURCES}
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}
|
|
|
|
RUN mkdir -pv ${AIRFLOW_HOME} \
|
|
mkdir -pv ${AIRFLOW_HOME}/dags \
|
|
mkdir -pv ${AIRFLOW_HOME}/logs \
|
|
&& chown -R ${AIRFLOW_USER}.${AIRFLOW_USER} ${AIRFLOW_HOME}
|
|
|
|
# Increase the value here to force reinstalling Apache Airflow pip dependencies
|
|
ARG PIP_DEPENDENCIES_EPOCH_NUMBER="1"
|
|
ENV PIP_DEPENDENCIES_EPOCH_NUMBER=${PIP_DEPENDENCIES_EPOCH_NUMBER}
|
|
|
|
# Optimizing installation of Cassandra driver
|
|
# Speeds up building the image - cassandra driver without CYTHON saves around 10 minutes
|
|
ARG CASS_DRIVER_NO_CYTHON="1"
|
|
# Build cassandra driver on multiple CPUs
|
|
ARG CASS_DRIVER_BUILD_CONCURRENCY="8"
|
|
|
|
ENV CASS_DRIVER_BUILD_CONCURRENCY=${CASS_DRIVER_BUILD_CONCURRENCY}
|
|
ENV CASS_DRIVER_NO_CYTHON=${CASS_DRIVER_NO_CYTHON}
|
|
|
|
# By default PIP install run without cache to make image smaller
|
|
ARG PIP_NO_CACHE_DIR="true"
|
|
ENV PIP_NO_CACHE_DIR=${PIP_NO_CACHE_DIR}
|
|
RUN echo "Pip no cache dir: ${PIP_NO_CACHE_DIR}"
|
|
|
|
# PIP version used to install dependencies
|
|
ARG PIP_VERSION="19.0.1"
|
|
ENV PIP_VERSION=${PIP_VERSION}
|
|
RUN echo "Pip version: ${PIP_VERSION}"
|
|
|
|
RUN pip install --upgrade pip==${PIP_VERSION}
|
|
|
|
ARG AIRFLOW_REPO=apache/airflow
|
|
ENV AIRFLOW_REPO=${AIRFLOW_REPO}
|
|
|
|
ARG AIRFLOW_BRANCH=master
|
|
ENV AIRFLOW_BRANCH=${AIRFLOW_BRANCH}
|
|
|
|
ENV AIRFLOW_GITHUB_DOWNLOAD=https://raw.githubusercontent.com/${AIRFLOW_REPO}/${AIRFLOW_BRANCH}
|
|
|
|
# Airflow Extras installed
|
|
ARG AIRFLOW_EXTRAS="all"
|
|
ENV AIRFLOW_EXTRAS=${AIRFLOW_EXTRAS}
|
|
|
|
RUN echo "Installing with extras: ${AIRFLOW_EXTRAS}."
|
|
|
|
ARG AIRFLOW_CONTAINER_CI_OPTIMISED_BUILD="false"
|
|
ENV AIRFLOW_CONTAINER_CI_OPTIMISED_BUILD=${AIRFLOW_CONTAINER_CI_OPTIMISED_BUILD}
|
|
|
|
# By changing the CI build epoch we can force reinstalling Arflow from the current master
|
|
# It can also be overwritten manually by setting the AIRFLOW_CI_BUILD_EPOCH environment variable.
|
|
ARG AIRFLOW_CI_BUILD_EPOCH="1"
|
|
ENV AIRFLOW_CI_BUILD_EPOCH=${AIRFLOW_CI_BUILD_EPOCH}
|
|
|
|
# In case of CI-optimised builds we want to pre-install master version of airflow dependencies so that
|
|
# We do not have to always reinstall it from the scratch.
|
|
# This can be reinstalled from latest master by increasing PIP_DEPENDENCIES_EPOCH_NUMBER.
|
|
# And is automatically reinstalled from the scratch every month
|
|
RUN \
|
|
if [[ "${AIRFLOW_CONTAINER_CI_OPTIMISED_BUILD}" == "true" ]]; then \
|
|
pip install --no-use-pep517 \
|
|
"https://github.com/apache/airflow/archive/${AIRFLOW_BRANCH}.tar.gz#egg=apache-airflow[${AIRFLOW_EXTRAS}]" \
|
|
&& pip uninstall --yes apache-airflow; \
|
|
fi
|
|
|
|
# Install NPM dependencies here. The NPM dependencies don't change that often and we already have pip
|
|
# installed dependencies in case of CI optimised build, so it is ok to install NPM deps here
|
|
# Rather than after setup.py is added.
|
|
COPY --chown=airflow:airflow airflow/www/package-lock.json ${AIRFLOW_SOURCES}/airflow/www/package-lock.json
|
|
COPY --chown=airflow:airflow airflow/www/package.json ${AIRFLOW_SOURCES}/airflow/www/package.json
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}/airflow/www
|
|
|
|
RUN gosu ${AIRFLOW_USER} npm ci
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}
|
|
|
|
# Note! We are copying everything with airflow:airflow user:group even if we use root to run the scripts
|
|
# This is fine as root user will be able to use those dirs anyway.
|
|
|
|
# Airflow sources change frequently but dependency configuration won't change that often
|
|
# We copy setup.py and other files needed to perform setup of dependencies
|
|
# So in case setup.py changes we can install latest dependencies required.
|
|
COPY --chown=airflow:airflow setup.py ${AIRFLOW_SOURCES}/setup.py
|
|
COPY --chown=airflow:airflow setup.cfg ${AIRFLOW_SOURCES}/setup.cfg
|
|
|
|
COPY --chown=airflow:airflow airflow/version.py ${AIRFLOW_SOURCES}/airflow/version.py
|
|
COPY --chown=airflow:airflow airflow/__init__.py ${AIRFLOW_SOURCES}/airflow/__init__.py
|
|
COPY --chown=airflow:airflow airflow/bin/airflow ${AIRFLOW_SOURCES}/airflow/bin/airflow
|
|
|
|
# The goal of this line is to install the dependencies from the most current setup.py from sources
|
|
# This will be usually incremental small set of packages in CI optimized build, so it will be very fast
|
|
# In non-CI optimized build this will install all dependencies before installing sources.
|
|
RUN pip install --no-use-pep517 -e ".[${AIRFLOW_EXTRAS}]"
|
|
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}/airflow/www
|
|
|
|
# Copy all www files here so that we can run npm building for production
|
|
COPY --chown=airflow:airflow airflow/www/ ${AIRFLOW_SOURCES}/airflow/www/
|
|
|
|
# Package NPM for production
|
|
RUN gosu ${AIRFLOW_USER} npm run prod
|
|
|
|
# Cache for this line will be automatically invalidated if any
|
|
# of airflow sources change
|
|
COPY --chown=airflow:airflow . ${AIRFLOW_SOURCES}/
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}
|
|
|
|
# Finally install the requirements from the latest sources
|
|
RUN pip install --no-use-pep517 -e ".[${AIRFLOW_EXTRAS}]"
|
|
|
|
# Additional python deps to install
|
|
ARG ADDITIONAL_PYTHON_DEPS=""
|
|
|
|
RUN if [[ -n "${ADDITIONAL_PYTHON_DEPS}" ]]; then \
|
|
pip install ${ADDITIONAL_PYTHON_DEPS}; \
|
|
fi
|
|
|
|
COPY --chown=airflow:airflow ./scripts/docker/entrypoint.sh /entrypoint.sh
|
|
|
|
ARG APT_DEPS_IMAGE="airflow-apt-deps-ci-slim"
|
|
ENV APT_DEPS_IMAGE=${APT_DEPS_IMAGE}
|
|
|
|
COPY --chown=airflow:airflow .bash_completion run-tests-complete run-tests ${HOME}/
|
|
COPY --chown=airflow:airflow .bash_completion.d/run-tests-complete \
|
|
${HOME}/.bash_completion.d/run-tests-complete
|
|
|
|
RUN if [[ "${APT_DEPS_IMAGE}" == "airflow-apt-deps-ci" ]]; then \
|
|
${AIRFLOW_SOURCES}/scripts/ci/docker_build/ci_build_extract_tests.sh; fi
|
|
|
|
USER ${AIRFLOW_USER}
|
|
|
|
WORKDIR ${AIRFLOW_SOURCES}
|
|
|
|
ENV PATH="${HOME}:${PATH}"
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dumb-init", "--", "/entrypoint.sh"]
|
|
|
|
CMD ["--help"]
|