From 8273ae29d070cc6132d3a9a286cdf46b56445167 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 12 Apr 2022 13:24:51 -0700 Subject: [PATCH] Switching UI to bch-dex-ui2 --- production/docker/bch-dex-ui/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/production/docker/bch-dex-ui/Dockerfile b/production/docker/bch-dex-ui/Dockerfile index f91430e..4345f85 100644 --- a/production/docker/bch-dex-ui/Dockerfile +++ b/production/docker/bch-dex-ui/Dockerfile @@ -46,11 +46,11 @@ RUN npm set registry http://94.130.170.209:4873/ # Clone the rest.bitcoin.com repository WORKDIR /home/safeuser -RUN git clone https://github.com/Permissionless-Software-Foundation/bch-dex-ui +RUN git clone https://github.com/Permissionless-Software-Foundation/bch-dex-ui2 # Switch to the desired branch. `master` is usually stable, # and `stage` has the most up-to-date changes. -WORKDIR /home/safeuser/bch-dex-ui +WORKDIR /home/safeuser/bch-dex-ui2 # For development: switch to unstable branch RUN git checkout ct-unstable @@ -68,6 +68,6 @@ FROM nginx EXPOSE 80 # Copy the files built in the first container to the new NGINX container. -COPY --from=builder /home/safeuser/bch-dex-ui/public /usr/share/nginx/html +COPY --from=builder /home/safeuser/bch-dex-ui2/public /usr/share/nginx/html #USER safeuser