Nabarun Gogoi
960a24c96b
* Setup gateway-server with watchers
* Add js script to merge toml config files
* Remove individual watcher configs
* Add all azimuth watchers in stack
* Fix toml-js install
* Use env variables for ipld-eth-server endpoints
* Checkout to version tag in azimuth-watcher-ts repo
Former-commit-id: 5a94aed7f7
14 lines
298 B
Docker
14 lines
298 B
Docker
FROM node:18.16.0-alpine3.16
|
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building azimuth-watcher-ts" && \
|
|
yarn && yarn build
|
|
|
|
RUN echo "Install toml-js to update watcher config files" && \
|
|
yarn add --dev --ignore-workspace-root-check toml-js
|