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>
14 lines
177 B
Docker
14 lines
177 B
Docker
FROM node:16.17.1-alpine3.16
|
|
|
|
RUN apk --update --no-cache add python3 alpine-sdk
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn
|
|
|
|
# Add scripts
|
|
RUN mkdir /scripts
|
|
ENV PATH="${PATH}:/scripts"
|