Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Sockets): check correct ws args #387

Merged
merged 1 commit into from
May 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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