From 382a9552ad7fbb1e6171011f46d97ab7b76a8820 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 11 Nov 2025 09:59:07 +0100 Subject: [PATCH] taco --- turbo-nextjs/.dockerignore | 14 ++++++++++++++ turbo-nextjs/Dockerfile | 1 - 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 turbo-nextjs/.dockerignore diff --git a/turbo-nextjs/.dockerignore b/turbo-nextjs/.dockerignore new file mode 100644 index 0000000..e12a1b2 --- /dev/null +++ b/turbo-nextjs/.dockerignore @@ -0,0 +1,14 @@ +node_modules +.next +.turbo +dist +.git +.gitignore +README.md +.env*.local +.DS_Store +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* diff --git a/turbo-nextjs/Dockerfile b/turbo-nextjs/Dockerfile index af167da..a68ce7f 100644 --- a/turbo-nextjs/Dockerfile +++ b/turbo-nextjs/Dockerfile @@ -6,7 +6,6 @@ RUN npm install -g pnpm@10.5.2 # Build the Next.js app FROM base AS builder -ENV NODE_ENV production RUN apk --no-cache upgrade && apk add --no-cache chromium