diff --git a/.dockerignore b/.dockerignore index 3c3629e..996deec 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,3 @@ node_modules +trustwallet +!trustwallet/blockchains/ethereum/assets diff --git a/Dockerfile b/Dockerfile index b6c325f..5062957 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,18 @@ FROM node:12.22.3-alpine AS builder WORKDIR /otterscan-build -COPY ["package*.json", "tsconfig.json", "craco.config.js", "tailwind.config.js", "/otterscan-build"] +COPY ["run-nginx.sh", "package*.json", "tsconfig.json", "craco.config.js", "tailwind.config.js", "/otterscan-build"] COPY ["src", "/otterscan-build/src"] COPY ["public", "/otterscan-build/public"] RUN npm install RUN npm run build FROM nginx:1.21.1-alpine +RUN apk add jq COPY 4bytes/signatures /usr/share/nginx/html/signatures/ COPY trustwallet/blockchains/ethereum/assets /usr/share/nginx/html/assets/ COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /otterscan-build/build /usr/share/nginx/html/ +COPY --from=builder /otterscan-build/run-nginx.sh / +WORKDIR / + +CMD ["/run-nginx.sh"] diff --git a/run-nginx.sh b/run-nginx.sh new file mode 100755 index 0000000..57cf41d --- /dev/null +++ b/run-nginx.sh @@ -0,0 +1,4 @@ +#!/bin/sh +PARAMS=`echo "{\"erigonURL\": \"$ERIGON_URL\"}" | jq -aRs .` +echo $PARAMS > /usr/share/nginx/html/config.json +nginx -g "daemon off;"