Mercurial > dotfiles
comparison .zfun/zsh-autosuggestions/Dockerfile @ 467:e1ce8897030d
zsh: import df6f6f9ff41 of zsh-autosuggestions
| author | Augie Fackler <raf@durin42.com> |
|---|---|
| date | Mon, 03 Dec 2018 22:37:29 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 466:f248cf012d9a | 467:e1ce8897030d |
|---|---|
| 1 FROM ruby:2.5.3-alpine | |
| 2 | |
| 3 RUN apk add --no-cache autoconf | |
| 4 RUN apk add --no-cache libtool | |
| 5 RUN apk add --no-cache libcap-dev | |
| 6 RUN apk add --no-cache pcre-dev | |
| 7 RUN apk add --no-cache curl | |
| 8 RUN apk add --no-cache build-base | |
| 9 RUN apk add --no-cache ncurses-dev | |
| 10 RUN apk add --no-cache tmux | |
| 11 | |
| 12 WORKDIR /zsh-autosuggestions | |
| 13 | |
| 14 ADD ZSH_VERSIONS /zsh-autosuggestions/ZSH_VERSIONS | |
| 15 ADD install_test_zsh.sh /zsh-autosuggestions/install_test_zsh.sh | |
| 16 RUN ./install_test_zsh.sh | |
| 17 | |
| 18 ADD Gemfile /zsh-autosuggestions/Gemfile | |
| 19 ADD Gemfile.lock /zsh-autosuggestions/Gemfile.lock | |
| 20 RUN bundle install |
