Skip to content

Commit

Permalink
Merge pull request #387 from blockchain/hotfix/sockets
Browse files Browse the repository at this point in the history
fix(Sockets): check correct ws args
  • Loading branch information
prwelber committed May 7, 2018
2 parents 19e4b25 + d8a74f6 commit e9b68db
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ RUN chown -R blockchain /home/blockchain
# pull build arguments from pipeline
ARG environment
ARG root_url
ARG web_socket_url
ARG btc_web_socket_url
ARG bch_web_socket_url
ARG eth_web_socket_url
ARG api_domain
ARG wallet_helper_domain

# ensure required build arguments are set
RUN : "${environment:? build argument is not set!}" \
: "${root_url:? build argument is not set!}" \
: "${web_socket_url:? build argument is not set!}" \
: "${btc_web_socket_url:? build argument is not set!}" \
: "${bch_web_socket_url:? build argument is not set!}" \
: "${eth_web_socket_url:? build argument is not set!}" \
: "${api_domain:? build argument is not set!}" \
: "${wallet_helper_domain:? build argument is not set!}"

Expand Down

0 comments on commit e9b68db

Please sign in to comment.