18 lines
		
	
	
		
			212 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			212 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ruby:2.7.4-alpine3.12
 | |
| 
 | |
| EXPOSE 4000
 | |
| 
 | |
| RUN apk --no-cache add \
 | |
|   bash \
 | |
|   curl \
 | |
|   g++ \
 | |
|   git \
 | |
|   make
 | |
| 
 | |
| RUN gem install bundler -v 2.1.4
 | |
| RUN gem install jekyll -v 4.0.0
 | |
| 
 | |
| COPY . ${WORKDIR}
 | |
| 
 | |
| RUN bundle install
 |