stack-orchestrator/container-build/cerc-watcher-mobymask/Dockerfile
prathamesh0 3b031329b4
Upgrade watcher-ts version in the mobymask stack (#83)
* Upgrade watcher-ts version in mobymask setup

* Change watcher db service name

* Add a clean-up step
2022-12-22 19:43:13 +05:30

15 lines
296 B
Docker

# TODO: move this into the cerc-io/mobymask-watcher repo
FROM node:16.17.1-alpine3.16
RUN apk --update --no-cache add git python3 alpine-sdk
WORKDIR /app
COPY . .
RUN echo "Building watcher-ts" && \
git checkout v0.2.19 && \
yarn && yarn build
WORKDIR /app/packages/mobymask-watcher