diff --git a/stacks/stack-orchestrator/container-build/cerc-watcher-v3/.dockerignore b/stacks/stack-orchestrator/container-build/cerc-watcher-v3/.dockerignore new file mode 100644 index 0000000..59da4af --- /dev/null +++ b/stacks/stack-orchestrator/container-build/cerc-watcher-v3/.dockerignore @@ -0,0 +1 @@ +stacks \ No newline at end of file diff --git a/stacks/stack-orchestrator/container-build/cerc-watcher-v3/Dockerfile b/stacks/stack-orchestrator/container-build/cerc-watcher-v3/Dockerfile new file mode 100644 index 0000000..9da5526 --- /dev/null +++ b/stacks/stack-orchestrator/container-build/cerc-watcher-v3/Dockerfile @@ -0,0 +1,11 @@ +# syntax=docker/dockerfile:1 +FROM node:18.17.1-alpine3.18 + +RUN apk --update --no-cache add git python3 alpine-sdk bash curl jq + +WORKDIR /app + +COPY . . + +RUN echo "Installing dependencies and building sv3-watcher-ts" && \ + yarn && yarn build