Skip to content

Commit

Permalink
Merge pull request #104 from edenia/update-aa-endpoint-pdn
Browse files Browse the repository at this point in the history
fix(env) update AA endpoint pdn
  • Loading branch information
fagomezra committed Jun 27, 2023
2 parents 794c3be + a3aba49 commit b7caf52
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-pdn-environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docker/eden-box.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docker/eden-webapp.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand All @@ -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
Expand Down

0 comments on commit b7caf52

Please sign in to comment.