mirror of
https://github.com/cerc-io/mars-interface.git
synced 2024-11-17 11:19:20 +00:00
feat: Dockerfile to support custom rpc,rest,network,gql params
This commit is contained in:
parent
838c9e8d40
commit
48ff74fff1
@ -1,5 +1,13 @@
|
||||
FROM node:19-alpine as builder
|
||||
WORKDIR /app
|
||||
|
||||
# This overrides the parameters during the build time.
|
||||
# You have to do this as passing env variables alone (or via .env file) is not enough.
|
||||
ARG NEXT_PUBLIC_RPC=https://rpc-osmosis.blockapsis.com
|
||||
ARG NEXT_PUBLIC_REST=https://lcd-osmosis.blockapsis.com
|
||||
ARG NEXT_PUBLIC_NETWORK=mainnet
|
||||
ARG NEXT_PUBLIC_GQL=https://rpc-osmosis.blockapsis.com
|
||||
|
||||
COPY package.json yarn.lock ./
|
||||
RUN yarn install
|
||||
COPY . .
|
||||
|
Loading…
Reference in New Issue
Block a user