Prathamesh Musale
6b74477aff
Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) Reviewed-on: cerc-io/testnet-laconicd-stack#2 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
17 lines
491 B
Docker
17 lines
491 B
Docker
FROM cerc/webapp-base:local
|
|
|
|
# Configure the cerc-io npm registry
|
|
RUN npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
|
RUN npm config set @lirewine:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Installing dependencies" && yarn
|
|
RUN echo "Building" && LACONIC_HOSTED_CONFIG_FILE=config-hosted.yml yarn dist
|
|
|
|
RUN npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
|
|
|
RUN yarn global add file:$PWD
|