forked from cerc-io/stack-orchestrator
4d3042bfcc
* Add mobymask-v2-watcher stack with peer tests
* Rename stack and container
* Avoid building react-peer container
* Improve step for getting container ID
Former-commit-id: 7831078872
21 lines
414 B
Docker
21 lines
414 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 \
|
|
&& node -v
|
|
|
|
RUN corepack enable \
|
|
&& yarn --version
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building watcher-ts" && \
|
|
yarn && yarn build
|
|
|
|
WORKDIR /app/packages/mobymask-v2-watcher
|