File tree 5 files changed +18
-12
lines changed 5 files changed +18
-12
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @hyperdx/api ' : patch
3
+ ' @hyperdx/app ' : patch
4
+ ---
5
+
6
+ chore: bump node to v18.20.3
Original file line number Diff line number Diff line change 1
- v18.15.0
1
+ v18.20.3
Original file line number Diff line number Diff line change 15
15
# - Limiting persisted data with some auto rotation
16
16
17
17
# Get Node base image to copy over Node binaries
18
- ARG NODE_VERSION=18.15.0
18
+ ARG NODE_VERSION=18.20.3
19
19
FROM node:${NODE_VERSION}-alpine AS node
20
20
21
21
# == API Builder Image ==
@@ -75,12 +75,12 @@ RUN apk update
75
75
RUN apk add wget shadow
76
76
# Check the target platform and choose the appropriate package
77
77
RUN if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
78
- wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.90.1/otelcol-contrib_0.90.1_linux_arm64.apk; \
79
- else \
80
- wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.90.1/otelcol-contrib_0.90.1_linux_amd64.apk; \
81
- fi && \
82
- apk add --allow-untrusted otelcol-contrib_0.90.1_linux_*.apk && \
83
- rm -rf otelcol-contrib_0.90.1_linux_*.apk
78
+ wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.90.1/otelcol-contrib_0.90.1_linux_arm64.apk; \
79
+ else \
80
+ wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.90.1/otelcol-contrib_0.90.1_linux_amd64.apk; \
81
+ fi && \
82
+ apk add --allow-untrusted otelcol-contrib_0.90.1_linux_*.apk && \
83
+ rm -rf otelcol-contrib_0.90.1_linux_*.apk
84
84
85
85
# == Install Node Deps ==
86
86
Original file line number Diff line number Diff line change 1
1
# # base #############################################################################################
2
- FROM node:18.15.0 -alpine AS base
2
+ FROM node:18.20.3 -alpine AS base
3
3
4
4
WORKDIR /app
5
5
@@ -28,7 +28,7 @@ RUN yarn run build
28
28
29
29
# # prod ############################################################################################
30
30
31
- FROM node:18.15.0 -alpine AS prod
31
+ FROM node:18.20.3 -alpine AS prod
32
32
33
33
ARG CODE_VERSION
34
34
Original file line number Diff line number Diff line change 1
1
# # base #############################################################################################
2
- FROM node:18.15.0 -alpine AS base
2
+ FROM node:18.20.3 -alpine AS base
3
3
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
4
4
RUN apk add --no-cache libc6-compat
5
5
WORKDIR /app
@@ -41,7 +41,7 @@ RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
41
41
42
42
43
43
# # prod ############################################################################################
44
- FROM node:18.15.0 -alpine AS prod
44
+ FROM node:18.20.3 -alpine AS prod
45
45
WORKDIR /app
46
46
47
47
ENV NODE_ENV production
You can’t perform that action at this time.
0 commit comments