Nabarun Gogoi
6f781ae303
* Separate out watcher and web-apps in mobymask stack * Take L2 RPC endpoint from the env file * Changes to run watcher and mobymask web-app separately * Support running watcher without contract deployment and L2 txs * Remove duplicate mobymask params env * Add code comments * Add instructions for running web-apps separately * Self review fixes * Fix timeout for mobymask-app on watcher server --------- Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com>
15 lines
197 B
Docker
15 lines
197 B
Docker
FROM node:18.15.0-alpine3.16
|
|
|
|
RUN apk --update --no-cache add make git jq bash
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm install -g serve
|
|
|
|
RUN echo "Building mobymask-ui" && \
|
|
npm install
|
|
|
|
WORKDIR /app
|