This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from onc-healthit/development
Version 2.6.0
- Loading branch information
Showing
70 changed files
with
1,758 additions
and
289 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 |
---|---|---|
|
@@ -12,4 +12,3 @@ coverage | |
tmp/* | ||
.vscode/* | ||
resources/terminology/* | ||
.ruby-version |
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 @@ | ||
2.5.6 |
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 @@ | ||
ruby 2.5.6 |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
language: ruby | ||
services: | ||
- docker | ||
rvm: | ||
- 2.5 | ||
- 2.6 | ||
before_install: | ||
- gem update --system | ||
- gem install bundler | ||
|
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 |
---|---|---|
@@ -1,8 +1,28 @@ | ||
FROM ruby:2.5 | ||
FROM ruby:2.5.6 | ||
|
||
# Install gems into a temporary directory | ||
COPY Gemfile* ./ | ||
RUN gem install bundler && bundle install | ||
WORKDIR /var/www/inferno | ||
|
||
# Expose the port | ||
### Install dependencies | ||
|
||
COPY Gemfile* /var/www/inferno/ | ||
RUN gem install bundler | ||
# Throw an error if Gemfile & Gemfile.lock are out of sync | ||
RUN bundle config --global frozen 1 | ||
RUN bundle install | ||
|
||
### Install Inferno | ||
|
||
RUN mkdir data | ||
COPY public /var/www/inferno/public | ||
COPY resources /var/www/inferno/resources | ||
COPY config* /var/www/inferno/ | ||
COPY Rakefile /var/www/inferno/ | ||
COPY test /var/www/inferno/test | ||
COPY lib /var/www/inferno/lib | ||
|
||
### Set up environment | ||
|
||
ENV APP_ENV=production | ||
EXPOSE 4567 | ||
|
||
CMD ["bundle", "exec", "rackup", "-o", "0.0.0.0"] |
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
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
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
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.