Nabarun Gogoi
b41b1fc315
* Clone required repositories * Build container for stack * Create deployment from spec file * Rename directories * Update README for clean up steps * Update README --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
11 lines
224 B
Docker
11 lines
224 B
Docker
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
|