From 372adaa8cf39dc46cd7c2062705605700389c580 Mon Sep 17 00:00:00 2001 From: Tamas Gal Date: Thu, 16 Oct 2025 14:16:12 +0200 Subject: [PATCH] Remove .env files copy --- feedmee/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/feedmee/Dockerfile b/feedmee/Dockerfile index 57fbe9a..ec8b0b9 100644 --- a/feedmee/Dockerfile +++ b/feedmee/Dockerfile @@ -24,8 +24,7 @@ FROM base AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . -# This will do the trick, use the corresponding env file for each environment. -COPY .env.production.sample .env.production + RUN npm run build # 3. Production image, copy all the files and run next