選択できるのは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