This repository has been archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
9,256 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.git | ||
.bundle | ||
.env* | ||
tmp | ||
frontend/node_modules | ||
# travis | ||
vendor/bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
FROM ruby:2.1 | ||
|
||
ENV NODE_VERSION="0.12.7" | ||
ENV BUNDLER_VERSION="1.10.6" | ||
|
||
# install node + npm | ||
RUN curl https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.gz | tar xzf - -C /usr/local --strip-components=1 | ||
|
||
# Using /home/app since npm cache and other stuff will be put there when running npm install | ||
# We don't want to pollute any locally-mounted directory | ||
RUN useradd -d /home/app -m app | ||
RUN mkdir -p /usr/src/app | ||
RUN chown -R app /usr/src/app /usr/local/bundle | ||
RUN gem install bundler --version "${BUNDLER_VERSION}" | ||
|
||
WORKDIR /usr/src/app | ||
|
||
# https registry breaks so often it's no longer funny | ||
RUN echo "registry = 'http://registry.npmjs.org/'" >> /usr/local/etc/npmrc | ||
# moar logs | ||
RUN echo "loglevel=info" >> /usr/local/etc/npmrc | ||
|
||
COPY Gemfile ./Gemfile | ||
COPY Gemfile.* ./ | ||
RUN chown -R app:app /usr/src/app | ||
|
||
USER app | ||
RUN bundle install --jobs 8 --retry 3 | ||
|
||
USER root | ||
# Then, npm install node modules | ||
COPY package.json /tmp/npm/package.json | ||
COPY frontend/*.json /tmp/npm/frontend/ | ||
RUN chown -R app:app /tmp/npm | ||
|
||
USER app | ||
RUN cd /tmp/npm && RAILS_ENV=production npm install | ||
RUN mv /tmp/npm/frontend /usr/src/app/ | ||
|
||
# Finally, copy over the whole thing | ||
USER root | ||
COPY . /usr/src/app | ||
RUN cp docker/Procfile . | ||
RUN sed -i "s|Rails.groups(:opf_plugins)|Rails.groups(:opf_plugins, :docker)|" config/application.rb | ||
RUN chown -R app:app /usr/src/app | ||
|
||
USER app | ||
RUN DATABASE_URL=sqlite3:///tmp/db.sqlite3 SECRET_TOKEN=foobar RAILS_ENV=production bundle exec rake assets:precompile | ||
|
||
CMD ["./docker/web"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.