edge_redacted #4

Open
shafi wants to merge 38 commits from edge_redacted into main
2 changed files with 9 additions and 2 deletions
Showing only changes of commit a4758ea9cd - Show all commits

7
.dockerignore Normal file
View file

@ -0,0 +1,7 @@
**/node_modules
**/dist
apps/users-ui/app
apps/users-ui/src
apps/admin-ui/app
apps/users-ui/src

View file

@ -15,8 +15,8 @@ COPY packages/shared/ ./packages/shared
COPY packages/ui/package.json ./packages/ui/
RUN bun install -g turbo
COPY . .
RUN turbo prune --scope=backend --scope=fallback-ui --scope=common-ui --scope=@packages/shared --docker
RUN find . -path "./node_modules" -prune -o -print
RUN turbo prune --scope=backend --scope=fallback-ui --scope=@packages/shared --docker
# RUN find . -path "./node_modules" -prune -o -print
# 3. ---- Builder ----
FROM base AS builder