diff --git a/Dockerfile b/Dockerfile index 471c2dd..1f2588b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ FROM node:${NODE_VERSION}-bullseye-slim AS builder WORKDIR /app COPY . . RUN yarn --ignore-engines && yarn build -RUN rm-rf node_modules & yarn install --force +RUN rm-rf node_modules & yarn install --force --ignore-engines # Runtime FROM gcr.io/distroless/nodejs${NODE_VERSION_SHORT}-debian11 diff --git a/src/system.ts b/src/system.ts index 0070f3a..a60f7ac 100644 --- a/src/system.ts +++ b/src/system.ts @@ -44,7 +44,7 @@ export const contract: AoIORead = IO.init({ // @permaweb/aoconnect defaults will be used if these are not provided MU_URL: config.AO_MU_URL, CU_URL: config.AO_CU_URL, - GRAPHQL_URL: config.AO_GATEWAY_URL, + GRAPHQL_URL: config.AO_GRAPHQL_URL, GATEWAY_URL: config.AO_GATEWAY_URL, }), }),