|
| 1 | +ARG DISTRO_VERSION |
| 2 | +# Stage 1 - bundle base image + runtime interface client |
| 3 | +# Grab a fresh copy of the image and install Python |
| 4 | +FROM public.ecr.aws/amazonlinux/amazonlinux:${DISTRO_VERSION} AS python-amazonlinux-builder |
| 5 | + |
| 6 | +ARG RUNTIME_VERSION |
| 7 | + |
| 8 | +# Install apt dependencies |
| 9 | +RUN dnf install -y \ |
| 10 | + gcc \ |
| 11 | + gcc-c++ \ |
| 12 | + tar \ |
| 13 | + gzip \ |
| 14 | + make \ |
| 15 | + autoconf \ |
| 16 | + automake \ |
| 17 | + freetype-devel \ |
| 18 | + yum-utils \ |
| 19 | + findutils \ |
| 20 | + wget \ |
| 21 | + openssl \ |
| 22 | + openssl-devel \ |
| 23 | + bzip2-devel \ |
| 24 | + libffi-devel \ |
| 25 | + sqlite-devel |
| 26 | + |
| 27 | +RUN RUNTIME_LATEST_VERSION=${RUNTIME_VERSION}.$(curl -s https://www.python.org/ftp/python/ | \ |
| 28 | + grep -oE "href=\"$(echo ${RUNTIME_VERSION} | sed "s/\\./\\\./g")\.[0-9]+" | \ |
| 29 | + cut -d. -f3 | \ |
| 30 | + sort -rn | \ |
| 31 | + while read -r patch; do \ |
| 32 | + $(wget -c https://www.python.org/ftp/python/${RUNTIME_VERSION}.$patch/Python-${RUNTIME_VERSION}.$patch.tgz -O Python-${RUNTIME_VERSION}.$patch.tgz); \ |
| 33 | + [ $? -eq 0 ] && echo $patch && break; \ |
| 34 | + done) \ |
| 35 | + && tar -xzf Python-${RUNTIME_LATEST_VERSION}.tgz \ |
| 36 | + && cd Python-${RUNTIME_LATEST_VERSION} \ |
| 37 | + && ./configure --prefix=/usr/local --enable-shared \ |
| 38 | + && make \ |
| 39 | + && make install \ |
| 40 | + && ln -s /usr/local/bin/python${RUNTIME_VERSION} /usr/local/bin/python${RUNTIME_LATEST_VERSION} |
| 41 | + |
| 42 | +# Stage 2 - clean python build dependencies |
| 43 | +FROM public.ecr.aws/amazonlinux/amazonlinux:${DISTRO_VERSION} AS python-amazonlinux |
| 44 | +RUN dnf install -y \ |
| 45 | + libffi-devel |
| 46 | + |
| 47 | +# Copy the compiled python to /usr/local |
| 48 | +COPY --from=python-amazonlinux-builder /usr/local /usr/local |
| 49 | +ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH |
| 50 | + |
| 51 | +# Stage 3 - build function and dependencies |
| 52 | +FROM python-amazonlinux-builder AS build-image |
| 53 | +ARG RUNTIME_VERSION |
| 54 | +ARG ARCHITECTURE |
| 55 | + |
| 56 | +# Install aws-lambda-cpp build dependencies |
| 57 | +RUN dnf install -y \ |
| 58 | + tar \ |
| 59 | + gzip \ |
| 60 | + make \ |
| 61 | + autoconf \ |
| 62 | + automake \ |
| 63 | + libtool \ |
| 64 | + libcurl-devel \ |
| 65 | + gcc-c++ \ |
| 66 | + wget \ |
| 67 | + sqlite-devel |
| 68 | + |
| 69 | +# Install a modern CMake |
| 70 | +RUN wget --quiet -O cmake-install https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0-linux-${ARCHITECTURE}.sh && \ |
| 71 | + sh cmake-install --skip-license --prefix=/usr --exclude-subdirectory; |
| 72 | + |
| 73 | +ENV PATH=/usr/local/bin:$PATH |
| 74 | +ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH |
| 75 | + |
| 76 | + |
| 77 | +# Include global args in this stage of the build |
| 78 | +ARG RIC_BUILD_DIR="/home/build/" |
| 79 | +# Create function directory |
| 80 | +RUN mkdir -p ${RIC_BUILD_DIR} |
| 81 | +# Copy function code and Runtime Interface Client .tgz |
| 82 | +WORKDIR ${RIC_BUILD_DIR} |
| 83 | +COPY . . |
| 84 | + |
| 85 | +# distutils no longer available in python3.12 and later |
| 86 | +# https://docs.python.org/3/whatsnew/3.12.html |
| 87 | +# https://peps.python.org/pep-0632/ |
| 88 | +RUN pip3 install setuptools |
| 89 | +RUN make init build |
| 90 | + |
| 91 | +RUN mv ./dist/awslambdaric-*.tar.gz ./dist/awslambdaric-test.tar.gz |
| 92 | +RUN python${RUNTIME_VERSION} -m pip install \ |
| 93 | + ./dist/awslambdaric-test.tar.gz \ |
| 94 | + --target ${RIC_BUILD_DIR} |
| 95 | + |
| 96 | +RUN make test |
| 97 | + |
| 98 | +# Include global args in this stage of the build |
| 99 | +ARG FUNCTION_DIR="/home/app/" |
| 100 | +# Create function directory |
| 101 | +RUN mkdir -p ${FUNCTION_DIR} |
| 102 | +# Copy function code |
| 103 | +COPY tests/integration/test-handlers/echo/* ${FUNCTION_DIR} |
| 104 | +# Copy Runtime Interface Client .tgz |
| 105 | +RUN cp ./dist/awslambdaric-test.tar.gz ${FUNCTION_DIR}/awslambdaric-test.tar.gz |
| 106 | + |
| 107 | +# Install the function's dependencies |
| 108 | +WORKDIR ${FUNCTION_DIR} |
| 109 | +RUN python${RUNTIME_VERSION} -m pip install \ |
| 110 | + awslambdaric-test.tar.gz \ |
| 111 | + --target ${FUNCTION_DIR} && \ |
| 112 | + rm awslambdaric-test.tar.gz |
| 113 | + |
| 114 | + |
| 115 | +# Stage 4 - final runtime interface client image |
| 116 | +# Grab a fresh copy of the Python image |
| 117 | +FROM python-amazonlinux |
| 118 | +RUN dnf install -y brotli |
| 119 | +# Include global arg in this stage of the build |
| 120 | +ARG FUNCTION_DIR="/home/app/" |
| 121 | +# Set working directory to function root directory |
| 122 | +WORKDIR ${FUNCTION_DIR} |
| 123 | +# Copy in the built dependencies |
| 124 | +COPY --from=build-image ${FUNCTION_DIR} ${FUNCTION_DIR} |
| 125 | +COPY .scratch/${RIE} /usr/bin/${RIE} |
| 126 | +ENTRYPOINT [ "/usr/local/bin/python3", "-m", "awslambdaric" ] |
| 127 | +CMD [ "app.handler" ] |
0 commit comments