secured-finance-watcher-stack/stack-orchestrator/container-build/cerc-watcher-secured-finance/Dockerfile

11 lines
224 B
Docker
Raw Normal View History

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 secured-finance-watcher-ts" && \
yarn && yarn build