From a3aba49ac94ea12781252b2a8ae9a8a94796d863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francis=20G=C3=B3mez?= Date: Tue, 27 Jun 2023 16:40:56 -0500 Subject: [PATCH] fix(env) update AA endpoint pdn --- .github/workflows/push-pdn-environment.yaml | 4 ++-- docker/eden-box.Dockerfile | 8 ++++---- docker/eden-webapp.Dockerfile | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/push-pdn-environment.yaml b/.github/workflows/push-pdn-environment.yaml index 1c966912c..da5c100de 100644 --- a/.github/workflows/push-pdn-environment.yaml +++ b/.github/workflows/push-pdn-environment.yaml @@ -497,8 +497,8 @@ jobs: NEXT_PUBLIC_TOKEN_CONTRACT: eosio.token NEXT_PUBLIC_TOKEN_SYMBOL: EOS NEXT_PUBLIC_TOKEN_PRECISION: 4 - NEXT_PUBLIC_AA_BASE_URL: https://eos.api.atomicassets.io/atomicassets/v1 - NEXT_PUBLIC_AA_MARKET_URL: https://eos.api.atomicassets.io/atomicmarket/v1 + NEXT_PUBLIC_AA_BASE_URL: https://jungle-aa.edenia.cloud/atomicassets/v1 + NEXT_PUBLIC_AA_MARKET_URL: https://jungle-aa.edenia.cloud/atomicmarket/v1 NEXT_PUBLIC_AA_HUB_URL: https://eos.atomichub.io NEXT_PUBLIC_AA_CONTRACT: atomicassets NEXT_PUBLIC_AA_MARKET_CONTRACT: atomicmarket diff --git a/docker/eden-box.Dockerfile b/docker/eden-box.Dockerfile index 3e505d4c5..895c67389 100644 --- a/docker/eden-box.Dockerfile +++ b/docker/eden-box.Dockerfile @@ -1,4 +1,4 @@ -# Install dependencies only when needed +# Install dependencies only when needed. FROM node:lts-alpine3.14 AS deps RUN apk add --no-cache libc6-compat @@ -13,7 +13,7 @@ COPY ./packages/box/package.json ./packages/box/ RUN yarn install --frozen-lockfile -# Rebuild the source code only when needed +# Rebuild the source code only when needed. FROM node:lts-alpine3.14 AS builder WORKDIR /app @@ -29,13 +29,13 @@ COPY ./build/eden-micro-chain.wasm /app/build/ RUN yarn build --stream -# Production image, copy all the files and run next +# Production image, copy all the files and run next. FROM node:lts-alpine3.14 AS runner WORKDIR /app ENV NODE_ENV production -# You only need to copy next.config.js if you are NOT using the default configuration +# You only need to copy next.config.js if you are NOT using the default configuration. COPY --from=builder /app . RUN addgroup -g 1001 -S nodejs diff --git a/docker/eden-webapp.Dockerfile b/docker/eden-webapp.Dockerfile index 93078360c..2eb7e438e 100644 --- a/docker/eden-webapp.Dockerfile +++ b/docker/eden-webapp.Dockerfile @@ -1,4 +1,4 @@ -# Install dependencies only when needed +# Install dependencies only when needed. FROM node:lts-alpine3.14 AS deps RUN apk add --no-cache libc6-compat @@ -13,7 +13,7 @@ COPY ./packages/webapp/package.json ./packages/webapp/ RUN yarn install --frozen-lockfile -# Rebuild the source code only when needed +# Rebuild the source code only when needed. FROM node:lts-alpine3.14 AS builder WORKDIR /app @@ -28,13 +28,13 @@ COPY --from=deps /app/packages/webapp/node_modules ./packages/webapp/node_module RUN yarn build --stream -# Production image, copy all the files and run next +# Production image, copy all the files and run next. FROM node:lts-alpine3.14 AS runner WORKDIR /app ENV NODE_ENV production -# You only need to copy next.config.js if you are NOT using the default configuration +# You only need to copy next.config.js if you are NOT using the default configuration. COPY --from=builder /app . RUN addgroup -g 1001 -S nodejs