Exclude stacks folder in docker image

This commit is contained in:
IshaVenikar
2024-06-13 17:29:37 +05:30
parent 9b10dc8980
commit 076c0da300
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