2022-12-22 06:03:39 +00:00
|
|
|
FROM node:16.17.1-alpine3.16
|
|
|
|
|
2023-10-18 12:10:55 +00:00
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk bash curl jq
|
2022-12-22 06:03:39 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2023-10-18 12:10:55 +00:00
|
|
|
RUN echo "Building erc20-watcher-ts" && \
|
2022-12-22 06:03:39 +00:00
|
|
|
yarn && yarn build
|