dd4dd519dd
* Add a container for ERC20 contract txs in the payments stack * Use erc20-watcher-ts repo in erc20 stack
11 lines
188 B
Docker
11 lines
188 B
Docker
FROM node:16.17.1-alpine3.16
|
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk bash curl jq
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building erc20-watcher-ts" && \
|
|
yarn && yarn build
|