Exclude stacks folder in docker image

This commit is contained in:
IshaVenikar
2024-06-18 22:26:30 +05:30
committed by nabarun
parent 408e12b741
commit e3a485f6b8
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1 @@
stacks
@@ -0,0 +1,11 @@
# 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