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