You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
433B

  1. FROM alpine:3.12.1
  2. # Base build dependencies
  3. RUN apk add "gcc=9.3.0-r2" "g++=9.3.0-r2" make python3 py3-pip \
  4. git openssl-libs-static openssl-dev
  5. # We use version-qualified names for compiler executables
  6. RUN ln -s $(type -P gcc) /usr/local/bin/gcc-9 && \
  7. ln -s $(type -P g++) /usr/local/bin/g++-9
  8. # Some Python test dependencies
  9. RUN python3 -m pip install pytest pytest-xdist \
  10. pytest-asyncio semver typing-extensions