Skip to content

Commit 85a9f69

Browse files
authored
Merge branch 'master' into master
2 parents add3d66 + a04a89c commit 85a9f69

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

.changeset/curvy-brooms-pay.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine AS build
1+
FROM node:24-alpine AS build
22

33
# Copy the source code
44
COPY ./ /tmp/source_code
@@ -25,7 +25,7 @@ RUN cp -r /tmp/source_code/bin /libraries
2525
# Remove everything inside /tmp
2626
RUN 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"
3131
ARG ASYNCAPI_CLI_VERSION=
@@ -50,7 +50,7 @@ RUN apk --update add git chromium && \
5050
COPY --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
5656
RUN ln -s /libraries/bin/run_bin /usr/local/bin/asyncapi

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
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 }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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"

src/apps/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
55
RUN apk add --update nghttp2

0 commit comments

Comments
 (0)