Skip to content

Commit

Permalink
add comment and surround only the variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thebedigupta committed Oct 16, 2024
1 parent af9d83f commit 750f1f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/generator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium-browser
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true

# Include the ARG instruction in this build stage
# Define ARG in build stage for use in RUN command
ARG ASYNCAPI_GENERATOR_VERSION=1.10.9

# Since 0.30.0 release Git is supported and required as a dependency
Expand All @@ -16,7 +17,7 @@ ARG ASYNCAPI_GENERATOR_VERSION=1.10.9
# Install dependencies and AsyncAPI Generator in a single RUN command
RUN apk --no-cache add git chromium && \
rm -rf /var/cache/apk/* && \
npm install -g --ignore-scripts "@asyncapi/generator@${ASYNCAPI_GENERATOR_VERSION}"
npm install -g --ignore-scripts @asyncapi/generator@"${ASYNCAPI_GENERATOR_VERSION}"


ENTRYPOINT [ "ag" ]

0 comments on commit 750f1f2

Please sign in to comment.