blob: 4e6b62c22847383aa88182ef83cd6718c00db468 [file] [log] [blame]
###############################################################################
# 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.
###############################################################################
ARG py_version
FROM python:"${py_version}"-stretch
MAINTAINER "Apache Beam <dev@beam.apache.org>"
# Install native bindings required for dependencies.
RUN apt-get update && \
apt-get install -y \
# These packages are needed for "pip install python-snappy" below.
libsnappy-dev \
# This package is needed for "pip install pyyaml" below to have c bindings.
libyaml-dev \
# This is used to speed up the re-installation of the sdk.
ccache \
&& \
rm -rf /var/lib/apt/lists/*
# Install packages required by the Python SDK and common dependencies of the user code.
# SDK dependencies not listed in base_image_requirements.txt will be installed when we install SDK
# in the next RUN statement.
COPY target/base_image_requirements.txt /tmp/base_image_requirements.txt
RUN \
pip install -r /tmp/base_image_requirements.txt && \
# Check that the fast implementation of protobuf is used.
python -c "from google.protobuf.internal import api_implementation; assert api_implementation._default_implementation_type == 'cpp'; print ('Verified fast protobuf used.')" && \
# Remove pip cache.
rm -rf /root/.cache/pip
# Configure ccache prior to installing the SDK.
RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
# These parameters are needed as pip compiles artifacts in random temporary directories.
RUN ccache --set-config=sloppiness=file_macro && ccache --set-config=hash_dir=false
COPY target/apache-beam.tar.gz /opt/apache/beam/tars/
RUN pip install -v /opt/apache/beam/tars/apache-beam.tar.gz[gcp] && \
# Remove pip cache.
rm -rf /root/.cache/pip
# Log complete list of what exact packages and versions are installed.
RUN pip freeze --all
ADD target/launcher/linux_amd64/boot /opt/apache/beam/
ENTRYPOINT ["/opt/apache/beam/boot"]