You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
635 B
27 lines
635 B
7 years ago
|
#################
|
||
|
# Bike Database #
|
||
|
#################
|
||
|
# Password is password for
|
||
|
|
||
|
FROM ruby:2.3.1
|
||
|
MAINTAINER Jonathan Rosenbaum <gnuser@gmail.com>
|
||
|
|
||
|
WORKDIR /app
|
||
|
RUN git clone https://github.com/Loos/bike-database.git .
|
||
|
#RUN apt-get update && apt-get -y install g++ libfcgi-dev libsqlite3-dev libpq-dev nodejs
|
||
|
|
||
|
RUN apt-get update && apt-get -y install libsqlite3-0 nodejs
|
||
|
|
||
|
COPY Gemfile /app
|
||
|
COPY seeds.rb /app/db
|
||
|
RUN env NOKOGIRI_USE_SYSTEM_LIBRARIES=true bundle install --gemfile=/app/Gemfile
|
||
|
COPY database.yml /app/config/
|
||
|
RUN bundle exec rake db:create db:migrate db:setup
|
||
|
|
||
|
|
||
|
#CMD rails server -b 0.0.0.0 -p 3000
|
||
|
CMD rails s
|
||
|
|
||
|
|
||
|
|