Skip to content

Commit

Permalink
chore(deps): update node.js to v18.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 12, 2023
1 parent f7bb9fd commit 61958fe
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions dashboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM node:18.2.0-alpine AS deps
FROM node:18.18.1-alpine AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
Expand All @@ -11,7 +11,7 @@ RUN yarn install --frozen-lockfile
# RUN npm ci

# Rebuild the source code only when needed
FROM node:18.2.0-alpine AS builder
FROM node:18.18.1-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
Expand All @@ -27,7 +27,7 @@ RUN yarn build
# RUN npm run build

# Production image, copy all the files and run next
FROM node:18.2.0-alpine AS runner
FROM node:18.18.1-alpine AS runner
WORKDIR /app

ENV NODE_ENV production
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@emotion/cache": "11.7.1",
"@emotion/react": "11.9.0",
"@next/bundle-analyzer": "12.1.6",
"@types/node": "16.11.36",
"@types/node": "18.18.4",
"@typescript-eslint/eslint-plugin": "5.27.0",
"copy-webpack-plugin": "11.0.0",
"eslint": "7.32.0",
Expand Down
8 changes: 4 additions & 4 deletions dashboard/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,10 @@
dependencies:
"@types/unist" "*"

"@types/node@16.11.36":
version "16.11.36"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.36.tgz#9ab9f8276987132ed2b225cace2218ba794fc751"
integrity sha512-FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==
"@types/node@18.18.4":
version "18.18.4"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.18.4.tgz#519fef47a13cf869be290c20fc6ae9b7fe887aa7"
integrity sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==

"@types/numeral@^0.0.28":
version "0.0.28"
Expand Down
4 changes: 2 additions & 2 deletions gaia/gaia-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM node:18.2.0-alpine AS deps
FROM node:18.18.1-alpine AS deps
RUN npm i -g pnpm
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
Expand All @@ -12,7 +12,7 @@ RUN pnpm i --frozen-lockfile
# RUN npm ci

# Rebuild the source code only when needed
FROM node:18.2.0-alpine AS builder
FROM node:18.18.1-alpine AS builder
RUN npm i -g pnpm
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
Expand Down
2 changes: 1 addition & 1 deletion gaia/gaia-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/node": "18.18.4",
"@types/react": "18.0.11",
"@types/react-dom": "18.0.5",
"eslint": "8.16.0",
Expand Down
8 changes: 4 additions & 4 deletions gaia/gaia-frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 61958fe

Please sign in to comment.