added to gitignore and added the required environment vars in dockerfile
This commit is contained in:
parent
9a1b1121d8
commit
c4199d052b
2 changed files with 8 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,6 +10,7 @@
|
|||
/vendor
|
||||
Gemfile.lock
|
||||
.config
|
||||
.env
|
||||
|
||||
# rspec failure tracking
|
||||
.rspec_status
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue