Nabarun Gogoi
cacd306b22
* Rename .env file * Add web app services to docker compose file * Add laconicd to deploy contract and send txs * Add demo with steps for running mobymask app with L2 chain * Add fix for yarn install on M1 platform in react-peer * Update multiaddrs to use websockets * Add notes in readmes --------- Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
21 lines
425 B
Docker
21 lines
425 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl gnupg build-essential \
|
|
&& curl --silent --location https://deb.nodesource.com/setup_18.x | bash - \
|
|
&& apt-get update \
|
|
&& apt-get install -y nodejs git busybox jq \
|
|
&& node -v
|
|
|
|
RUN corepack enable \
|
|
&& yarn --version
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building watcher-ts" && \
|
|
yarn && yarn build
|
|
|
|
WORKDIR /app/packages/mobymask-v2-watcher
|