File tree Expand file tree Collapse file tree 6 files changed +27
-3
lines changed Expand file tree Collapse file tree 6 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1+ FROM ruby:2.5
2+ RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base gstreamer1.0-tools gstreamer1.0-x
3+ RUN mkdir /WebsiteOne
4+ WORKDIR /WebsiteOne
5+ COPY Gemfile /WebsiteOne/Gemfile
6+ COPY Gemfile.lock /WebsiteOne/Gemfile.lock
7+ RUN bundle install
8+ COPY . /WebsiteOne
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
3- ruby '2.5.0 '
3+ ruby '2.5.1 '
44
55gem 'rails' , '~> 5.1'
66gem 'acts-as-taggable-on'
Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ DEPENDENCIES
758758 zeus
759759
760760RUBY VERSION
761- ruby 2.5.0p0
761+ ruby 2.5.1p57
762762
763763BUNDLED WITH
764764 1.16.2
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ development: &dev
33 encoding : unicode
44 database : websiteone_development
55 pool : 20
6+ host : db
67 username : postgres
7- password :
8+ password :
89test : &test
910 << : *dev
1011 database : websiteone_test
Original file line number Diff line number Diff line change 1+ version : ' 3'
2+ services :
3+ db :
4+ image : postgres
5+ volumes :
6+ - ./tmp/db:/var/lib/postgresql/data:rw
7+ web :
8+ build : .
9+ command : bundle exec rails s -p 3000 -b '0.0.0.0'
10+ volumes :
11+ - .:/WebsiteOne
12+ ports :
13+ - " 3000:3000"
14+ depends_on :
15+ - db
You can’t perform that action at this time.
0 commit comments