added to gitignore and added the required environment vars in dockerfile

This commit is contained in:
Brendan McDevitt 2019-04-06 00:59:19 -05:00
parent 9a1b1121d8
commit c4199d052b
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -10,6 +10,7 @@
/vendor
Gemfile.lock
.config
.env
# rspec failure tracking
.rspec_status

View file

@ -4,6 +4,13 @@ RUN mkdir /usr/src/app
ADD . /usr/src/app/
WORKDIR /usr/src/app/
ENV pastebin_api_key
ENV pastebin_username
ENV pastebin_password
ENV elasticsearch_url
ENV redis_url
RUN gem update --system
RUN gem install bundler