sushiswap-watcher-ts/stacks/stack-orchestrator/container-build/cerc-watcher-v3/Dockerfile

12 lines
241 B
Docker
Raw Normal View History

2024-06-13 09:16:43 +00:00
# syntax=docker/dockerfile:1
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 sv3-watcher-ts" && \
yarn && yarn build