Dockerfile 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Copyright 2020 The gRPC Authors
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. FROM dockcross/manylinux2014-aarch64:20210826-19322ba
  15. # manylinux_2_17 is the preferred alias of manylinux2014
  16. ENV AUDITWHEEL_PLAT manylinux_2_17_$AUDITWHEEL_ARCH
  17. ###################################
  18. # Install Python build requirements
  19. RUN /opt/python/cp36-cp36m/bin/pip install --upgrade cython
  20. RUN /opt/python/cp37-cp37m/bin/pip install --upgrade cython
  21. RUN /opt/python/cp38-cp38/bin/pip install --upgrade cython
  22. RUN /opt/python/cp39-cp39/bin/pip install --upgrade cython
  23. RUN /opt/python/cp310-cp310/bin/pip install --upgrade cython
  24. #=================
  25. # Install ccache
  26. # Install ccache from source since ccache 3.x packaged with most linux distributions
  27. # does not support Redis backend for caching.
  28. RUN unset CMAKE_TOOLCHAIN_FILE && unset AS AR CC CPP CXX LD \
  29. && curl -sSL -o ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.5.1/ccache-4.5.1.tar.gz \
  30. && tar -zxf ccache.tar.gz \
  31. && cd ccache-4.5.1 \
  32. && mkdir build && cd build \
  33. && cmake -DCMAKE_BUILD_TYPE=Release -DZSTD_FROM_INTERNET=ON -DHIREDIS_FROM_INTERNET=ON .. \
  34. && make -j4 && make install \
  35. && cd ../.. \
  36. && rm -rf ccache-4.5.1 ccache.tar.gz
  37. # the dockcross docker image sets variables like CC, CXX etc.
  38. # to point to the crosscompilation toolchain, but doesn't set corresponding
  39. # variables for the "strip" and "objcopy" tools.
  40. # see https://github.com/dockcross/dockcross/blob/4349cb4999401cbf22a90f46f5052d29be240e50/manylinux2014-aarch64/Dockerfile.in#L23
  41. ENV STRIP=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip \
  42. OBJCOPY=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-objcopy
  43. # The dockcross base of this image sets CC and CXX to absolute paths, which makes it impossible to redirect their invocations
  44. # to ccache via a symlink. Use relative paths instead.
  45. ENV CC ${CROSS_TRIPLE}-gcc
  46. ENV CXX ${CROSS_TRIPLE}-g++