File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @asyncapi/cli ' : patch
3+ ---
4+
5+ chore: bump Node.js version to 24 in remaining Dockerfiles
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 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