Mercurial > dotfiles
view .zfun/zsh-autosuggestions/Dockerfile @ 530:dbb75edda2ff default tip
cleanup: remove ancient distnoted reaper script
Surely this bug has been fixed in the 9+ years that the script has
been run once a minute by cron on my laptop. To my surprise, it looks
like the Migration Assistant even managed to carry it across laptops!
| author | Augie Fackler <raf@durin42.com> |
|---|---|
| date | Sat, 03 Jan 2026 19:12:16 -0500 |
| parents | e1ce8897030d |
| children |
line wrap: on
line source
FROM ruby:2.5.3-alpine RUN apk add --no-cache autoconf RUN apk add --no-cache libtool RUN apk add --no-cache libcap-dev RUN apk add --no-cache pcre-dev RUN apk add --no-cache curl RUN apk add --no-cache build-base RUN apk add --no-cache ncurses-dev RUN apk add --no-cache tmux WORKDIR /zsh-autosuggestions ADD ZSH_VERSIONS /zsh-autosuggestions/ZSH_VERSIONS ADD install_test_zsh.sh /zsh-autosuggestions/install_test_zsh.sh RUN ./install_test_zsh.sh ADD Gemfile /zsh-autosuggestions/Gemfile ADD Gemfile.lock /zsh-autosuggestions/Gemfile.lock RUN bundle install
