您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
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