forked from cerc-io/stack-orchestrator
14 lines
237 B
Docker
14 lines
237 B
Docker
|
FROM node:16.17.1-alpine3.16
|
||
|
|
||
|
RUN apk --update --no-cache add git python3 alpine-sdk
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN echo "Building watcher-ts" && \
|
||
|
git checkout v0.2.19 && \
|
||
|
yarn && yarn build
|
||
|
|
||
|
WORKDIR /app/packages/erc721-watcher
|