1 # Arvados API server Docker container.
4 MAINTAINER Ward Vandewege <ward@clinicalfuture.com>
6 RUN git clone git://github.com/clinicalfuture/sso-devise-omniauth-provider.git /usr/src/sso-provider ;\
7 bundle install --gemfile=/usr/src/sso-provider/Gemfile
9 # Install generated config files
10 ADD generated/secret_token.rb /usr/src/sso-provider/config/initializers/secret_token.rb
11 ADD generated/seeds.rb /usr/src/sso-provider/db/seeds.rb
12 ADD generated/apache2_vhost /etc/apache2/sites-available/sso-provider
13 ADD generated/apache2_vhost /etc/apache2/sites-available/sso-provider
15 # Configure Apache and Passenger.
16 ADD passenger.conf /etc/apache2/conf.d/passenger
17 RUN a2dissite default ; \
18 a2ensite sso-provider ; \
21 cd /usr/src/sso-provider; RAILS_ENV=production rake db:setup ; rake assets:precompile ; \
22 chown www-data:www-data tmp_omniauth log config.ru -R ; \
23 chown www-data:www-data db db/production.sqlite3 ; \
24 /bin/mkdir /var/run/apache2
26 ADD apache2_foreground.sh /etc/apache2/foreground.sh
28 # Start the supervisor.
29 CMD ["/etc/apache2/foreground.sh"]