From e0d290e43f60c000affa1205a8a827207ffc41e7 Mon Sep 17 00:00:00 2001 From: Light13008 Date: Tue, 8 Oct 2024 14:16:59 +0530 Subject: [PATCH] Unwanted commets were removed --- apps/generator/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/generator/Dockerfile b/apps/generator/Dockerfile index 60e2c8d1f..0b45d3e0b 100644 --- a/apps/generator/Dockerfile +++ b/apps/generator/Dockerfile @@ -1,6 +1,6 @@ FROM node:18-alpine -ARG ASYNCAPI_GENERATOR_VERSION="1.10.9" # Include ARG in the build stage and surround it with double quotes +ARG ASYNCAPI_GENERATOR_VERSION="1.10.9" WORKDIR /app @@ -12,7 +12,7 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true" # Since 0.14.0 release of html-template chromium is needed for pdf generation. # More custom packages for specific template should not be added to this dockerfile. Instead, we should come up with some extensibility solution. RUN apk --update add --no-cache git chromium && \ - npm install -g @asyncapi/generator@"$ASYNCAPI_GENERATOR_VERSION" && \ # Surround variable with double quotes + npm install -g @asyncapi/generator@"$ASYNCAPI_GENERATOR_VERSION" && \ npm cache clean --force # Define the entry point for the AsyncAPI generator