stack-orchestrator/app/data/container-build/cerc-watcher-mobymask/Dockerfile

15 lines
296 B
Docker
Raw Normal View History

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