File tree Expand file tree Collapse file tree 6 files changed +18
-11
lines changed
Expand file tree Collapse file tree 6 files changed +18
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# @asyncapi/cli
22
3+ ## 5.0.5
4+
5+ ### Patch Changes
6+
7+ - be7c41d: chore: bump Node.js version to 24 in remaining Dockerfiles
8+
9+ ## 5.0.4
10+
11+ ### Patch Changes
12+
13+ - cacf566: Update server-api image to use Node 24.
14+
315## 5.0.3
416
517### Patch Changes
Original file line number Diff line number Diff line change 1- FROM node:20 -alpine AS build
1+ FROM node:24 -alpine AS build
22
33# Copy the source code
44COPY ./ /tmp/source_code
@@ -25,7 +25,7 @@ RUN cp -r /tmp/source_code/bin /libraries
2525# Remove everything inside /tmp
2626RUN rm -rf /tmp/*
2727
28- FROM node:20 -alpine
28+ FROM node:24 -alpine
2929
3030# Set ARG to explicit value to build chosen version. Default is "latest"
3131ARG ASYNCAPI_CLI_VERSION=
@@ -50,7 +50,7 @@ RUN apk --update add git chromium && \
5050COPY --from=build /libraries /libraries
5151
5252# Install the dependencies
53- RUN cd /libraries && npm install --production --ignore-scripts
53+ RUN cd /libraries && npm install --omit=dev --ignore-scripts
5454
5555# Create a script that runs the desired command
5656RUN ln -s /libraries/bin/run_bin /usr/local/bin/asyncapi
Original file line number Diff line number Diff line change 3838 using : ' docker'
3939 # This is the image that will be used to run the action.
4040 # IMPORTANT: The version has to be changed manually in your PRs.
41- image : ' docker://asyncapi/github-action-for-cli:5.0.3 '
41+ image : ' docker://asyncapi/github-action-for-cli:5.0.5 '
4242 args :
4343 - ${{ inputs.cli_version }}
4444 - ${{ inputs.command }}
Original file line number Diff line number Diff line change 11{
22 "name" : " @asyncapi/cli" ,
33 "description" : " All in one CLI for all AsyncAPI tools" ,
4- "version" : " 5.0.3 " ,
4+ "version" : " 5.0.5 " ,
55 "author" : " @asyncapi" ,
66 "bin" : {
77 "asyncapi" : " ./bin/run_bin"
Original file line number Diff line number Diff line change 11# ---- Base Alpine with Node ----
2- FROM node:20 -alpine AS base
2+ FROM node:24 -alpine AS base
33
44# Install required system packages
55RUN apk add --update nghttp2
You can’t perform that action at this time.
0 commit comments