From 8817453a1da0bbc09e516532b82c7a636f0399e5 Mon Sep 17 00:00:00 2001 From: Venissa Carol Quadros Date: Mon, 16 Jun 2025 15:31:46 -0400 Subject: [PATCH] Remove rollup steps from tat service Dockerfile --- services/tat/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/tat/Dockerfile b/services/tat/Dockerfile index 6f53ef4cc..d13ea115e 100644 --- a/services/tat/Dockerfile +++ b/services/tat/Dockerfile @@ -18,13 +18,13 @@ WORKDIR /app # RUN npm run build # Set npm to ignore scripts -ENV npm_config_ignore_scripts=true +# ENV npm_config_ignore_scripts=true # Run build manually ignoring scripts -WORKDIR /app/packages/svgcanvas -RUN npx rollup -c -WORKDIR /app -RUN npx rollup -c +# WORKDIR /app/packages/svgcanvas +# RUN npx rollup -c +# WORKDIR /app +# RUN npx rollup -c # Stage 2: Serve the application FROM nginx:alpine