mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-04 12:07:23 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			731 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			731 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ruby:2.4.1
 | 
						|
MAINTAINER BioSistemika <info@biosistemika.com>
 | 
						|
 | 
						|
# additional dependecies
 | 
						|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
 | 
						|
  apt-get update -qq && \
 | 
						|
  apt-get install -y \
 | 
						|
  nodejs \
 | 
						|
  qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base gstreamer1.0-tools gstreamer1.0-x \
 | 
						|
  xvfb \
 | 
						|
  postgresql-client \
 | 
						|
  default-jre-headless \
 | 
						|
  unison \
 | 
						|
  sudo graphviz --no-install-recommends \
 | 
						|
  libfile-mimeinfo-perl && \
 | 
						|
  npm install -g yarn && \
 | 
						|
  rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
# heroku tools
 | 
						|
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
 | 
						|
 | 
						|
ENV BUNDLE_PATH /usr/local/bundle/
 | 
						|
 | 
						|
# create app directory
 | 
						|
ENV APP_HOME /usr/src/app
 | 
						|
RUN mkdir $APP_HOME
 | 
						|
WORKDIR $APP_HOME
 | 
						|
 | 
						|
CMD rails s -b 0.0.0.0
 |