mirror of
				https://github.com/zsh-users/zsh-autosuggestions.git
				synced 2025-10-30 15:26:29 +08:00 
			
		
		
		
	 2cc34c015e
			
		
	
	
		2cc34c015e
		
	
	
	
	
		
			
			The testing docker image has been split up. Instead of having one image with all supported versions of zsh installed, we now have a separate image for each supported zsh version. We use GitHub Action matrices to run jobs in parallel for all of the supported versions. We no longer need to publish images to Docker Hub. The images are just built by CI (or developers) as needed from the Dockerfile in the repo.
		
			
				
	
	
		
			22 lines
		
	
	
		
			462 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			462 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ruby:2.5.3-alpine
 | |
| 
 | |
| ARG TEST_ZSH_VERSION
 | |
| RUN : "${TEST_ZSH_VERSION:?}"
 | |
| 
 | |
| 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 install_test_zsh.sh ./
 | |
| RUN ./install_test_zsh.sh
 | |
| 
 | |
| ADD Gemfile Gemfile.lock ./
 | |
| RUN bundle install
 |