7831078872
* Add mobymask-v2-watcher stack with peer tests * Rename stack and container * Avoid building react-peer container * Improve step for getting container ID
13 lines
199 B
Docker
13 lines
199 B
Docker
FROM node:18.15.0-alpine3.16
|
|
|
|
RUN apk --update --no-cache add make git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building react-peer" && \
|
|
yarn && yarn workspace @cerc-io/react-peer build
|
|
|
|
WORKDIR /app
|