Files

22 lines
462 B
Docker
Raw Permalink Normal View History

2018-11-11 14:34:54 -07:00
FROM ruby:2.5.3-alpine
2023-05-26 17:36:17 -06:00
ARG TEST_ZSH_VERSION
RUN : "${TEST_ZSH_VERSION:?}"
2018-11-11 14:34:54 -07:00
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
2023-05-26 17:36:17 -06:00
ADD install_test_zsh.sh ./
2018-11-11 14:34:54 -07:00
RUN ./install_test_zsh.sh
2023-05-26 17:36:17 -06:00
ADD Gemfile Gemfile.lock ./
2018-11-11 14:34:54 -07:00
RUN bundle install