From 23ce276e19a6cd7e4b57123b9ffe91f0a110c303 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Mon, 22 Dec 2025 05:10:37 -0700 Subject: [PATCH] fix(docker): Using .env rather than .env-example in docker file --- production/docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/production/docker/Dockerfile b/production/docker/Dockerfile index 383a553..b445ac5 100644 --- a/production/docker/Dockerfile +++ b/production/docker/Dockerfile @@ -51,6 +51,8 @@ RUN git clone https://github.com/Permissionless-Software-Foundation/psf-bch-api # and `stage` has the most up-to-date changes. WORKDIR /home/safeuser/psf-bch-api +RUN git checkout ct-unstable + # Install dependencies RUN npm install RUN npm install minimal-slp-wallet @@ -58,7 +60,7 @@ RUN npm install minimal-slp-wallet # Generate the API docs RUN npm run docs -COPY .env-example .env +COPY .env .env CMD ["npm", "start"]