From 86829e95e09503a4b14746c924fbcc6e0e844704 Mon Sep 17 00:00:00 2001 From: Bill Wallace Date: Wed, 18 Dec 2024 15:01:36 -0500 Subject: [PATCH] fix: Removed some more build/install files from copy --- .dockerignore | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.dockerignore b/.dockerignore index ca74c539884..f906eff86bb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -8,11 +8,11 @@ # have this file as their .dockerignore. # Output -dist/ -build/ +**/dist/ +**/build/ # Dependencies -node_modules/ +**/node_modules/ # Root README.md @@ -33,5 +33,5 @@ dockerfile .scripts/ .vscode/ coverage/ -docs/ +platform/docs/ testdata/ diff --git a/Dockerfile b/Dockerfile index d9edf55a382..0ba5cf131c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,7 +56,7 @@ COPY --parents ./addOns/package.json ./addOns/*/*/package.json ./extensions/*/pa # Run the install before copying the rest of the files RUN bun install # Copy the local directory -COPY --link --exclude=node_modules --exclude=yarn.lock --exclude=package.json --exclude=Dockerfile . . +COPY --link --exclude=yarn.lock --exclude=package.json --exclude=Dockerfile . . # Do a second install to finalize things after the copy RUN bun run show:config RUN bun install