Skip to content

Commit b192366

Browse files
authored
chore: bump node to v18.20.3 (#411)
1 parent c39a26e commit b192366

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

.changeset/slow-mayflies-wink.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@hyperdx/api': patch
3+
'@hyperdx/app': patch
4+
---
5+
6+
chore: bump node to v18.20.3

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.15.0
1+
v18.20.3

docker/local/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# - Limiting persisted data with some auto rotation
1616

1717
# Get Node base image to copy over Node binaries
18-
ARG NODE_VERSION=18.15.0
18+
ARG NODE_VERSION=18.20.3
1919
FROM node:${NODE_VERSION}-alpine AS node
2020

2121
# == API Builder Image ==
@@ -75,12 +75,12 @@ RUN apk update
7575
RUN apk add wget shadow
7676
# Check the target platform and choose the appropriate package
7777
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
8484

8585
# == Install Node Deps ==
8686

packages/api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## base #############################################################################################
2-
FROM node:18.15.0-alpine AS base
2+
FROM node:18.20.3-alpine AS base
33

44
WORKDIR /app
55

@@ -28,7 +28,7 @@ RUN yarn run build
2828

2929
## prod ############################################################################################
3030

31-
FROM node:18.15.0-alpine AS prod
31+
FROM node:18.20.3-alpine AS prod
3232

3333
ARG CODE_VERSION
3434

packages/app/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## base #############################################################################################
2-
FROM node:18.15.0-alpine AS base
2+
FROM node:18.20.3-alpine AS base
33
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
44
RUN apk add --no-cache libc6-compat
55
WORKDIR /app
@@ -41,7 +41,7 @@ RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
4141

4242

4343
## prod ############################################################################################
44-
FROM node:18.15.0-alpine AS prod
44+
FROM node:18.20.3-alpine AS prod
4545
WORKDIR /app
4646

4747
ENV NODE_ENV production

0 commit comments

Comments
 (0)