Nabarun Gogoi
53fbc60f55
* Use standalone mobymask-v2-watcher-ts to run peer test
* Add watcher-ts image for running peer tests
* Run separate containers for peer ids generation and tests
* Wait for watcher to be up before starting peer-test-app
* Resolve peer-test-app compose file and remove setup-repositories for web-apps
Former-commit-id: c4002dcc5c
11 lines
172 B
Docker
11 lines
172 B
Docker
FROM node:16.17.1-alpine3.16
|
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk jq
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building watcher-ts" && \
|
|
yarn && yarn build
|