From 07c671ede45b840d8cec42bf91fe962c03e24f02 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Thu, 15 May 2025 17:58:29 -0700 Subject: [PATCH] fix(production): Using v3 UI --- 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 3f5a523..42a4c76 100644 --- a/production/docker/bch-dex-ui/Dockerfile +++ b/production/docker/bch-dex-ui/Dockerfile @@ -46,11 +46,11 @@ WORKDIR /home/safeuser # Clone the rest.bitcoin.com repository WORKDIR /home/safeuser -RUN git clone https://github.com/Permissionless-Software-Foundation/bch-dex-ui-v2 +RUN git clone https://github.com/Permissionless-Software-Foundation/bch-dex-ui-v3 # Switch to the desired branch. `master` is usually stable, # and `stage` has the most up-to-date changes. -WORKDIR /home/safeuser/bch-dex-ui-v2 +WORKDIR /home/safeuser/bch-dex-ui-v3 # 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-v2/build /usr/share/nginx/html +COPY --from=builder /home/safeuser/bch-dex-ui-v3/build /usr/share/nginx/html #USER safeuser