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

20 行
563 B

  1. FROM ruby:2.5.3-alpine
  2. RUN apk add --no-cache autoconf
  3. RUN apk add --no-cache libtool
  4. RUN apk add --no-cache libcap-dev
  5. RUN apk add --no-cache pcre-dev
  6. RUN apk add --no-cache curl
  7. RUN apk add --no-cache build-base
  8. RUN apk add --no-cache ncurses-dev
  9. RUN apk add --no-cache tmux
  10. WORKDIR /zsh-autosuggestions
  11. ADD ZSH_VERSIONS /zsh-autosuggestions/ZSH_VERSIONS
  12. ADD install_test_zsh.sh /zsh-autosuggestions/install_test_zsh.sh
  13. RUN ./install_test_zsh.sh
  14. ADD Gemfile /zsh-autosuggestions/Gemfile
  15. ADD Gemfile.lock /zsh-autosuggestions/Gemfile.lock
  16. RUN bundle install