mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			658 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			658 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM openproject/community:{{applications.openproject.version}}
 | |
| 
 | |
| # If installing a local plugin (using `path:` in the `Gemfile.plugins` above),
 | |
| # you will have to copy the plugin code into the container here and use the
 | |
| # path inside of the container. Say for `/app/vendor/plugins/openproject-slack`:
 | |
| # COPY /path/to/my/local/openproject-slack /app/vendor/plugins/openproject-slack
 | |
| 
 | |
| COPY Gemfile.plugins /app/
 | |
| 
 | |
| # If the plugin uses any external NPM dependencies you have to install them here.
 | |
| # RUN npm add npm <package-name>*
 | |
| 
 | |
| RUN bundle config unset deployment && bundle install && bundle config set deployment 'true'
 | |
| RUN ./docker/prod/setup/postinstall.sh |