forked from cerc-io/stack-orchestrator
11 lines
172 B
Docker
11 lines
172 B
Docker
FROM node:18.17.1-alpine3.17
|
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk jq
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building watcher-ts" && \
|
|
yarn && yarn build
|