diff --git a/app/data/config/watcher-mobymask-v2/secrets.json b/app/data/config/watcher-mobymask-v2/secrets.json index 1ce503b3..127735cd 100644 --- a/app/data/config/watcher-mobymask-v2/secrets.json +++ b/app/data/config/watcher-mobymask-v2/secrets.json @@ -1,5 +1,5 @@ { "rpcUrl": "http://laconicd:8545", - "privateKey": "c7f31b8b2d5c760c895cbbe881390c78a9435eedb08011a3a23a4d4195a50d6d", + "privateKey": "GENESIS_ACCOUNT_PRIVATE_KEY", "baseURI": "http://127.0.0.1:3002/#" } diff --git a/app/data/container-build/cerc-react-peer/Dockerfile b/app/data/container-build/cerc-react-peer/Dockerfile index d035fb44..cc852441 100644 --- a/app/data/container-build/cerc-react-peer/Dockerfile +++ b/app/data/container-build/cerc-react-peer/Dockerfile @@ -1,6 +1,6 @@ FROM node:18.15.0-alpine3.16 -RUN apk --update --no-cache add make git +RUN apk --update --no-cache add make git python3 WORKDIR /app @@ -9,6 +9,6 @@ COPY . . RUN yarn global add serve RUN echo "Building react-peer" && \ - yarn && yarn build --ignore @cerc-io/test-app + yarn install --ignore-scripts && yarn build --ignore @cerc-io/test-app WORKDIR /app