Skip to content

Commit

Permalink
update: update dependency node to v16.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 26, 2024
1 parent b8215fa commit 61f2049
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13.1
16.20.2
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM node:16.13.1-alpine AS deps
FROM node:16.20.2-alpine AS deps
WORKDIR /app
RUN apk add --no-cache libc6-compat
COPY package.json yarn.lock .yarnrc.yml .
Expand All @@ -11,14 +11,14 @@ COPY packages/web/package.json ./packages/web/package.json
RUN yarn --immutable

# Rebuild the source code only when needed
FROM node:16.13.1-alpine AS builder
FROM node:16.20.2-alpine AS builder
WORKDIR /app
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN yarn build && yarn workspaces focus --all --production

# Production image
FROM node:16.13.1-alpine AS runner
FROM node:16.20.2-alpine AS runner
WORKDIR /app
ENV NODE_ENV production

Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@types/bunyan-format": "0.2.4",
"@types/jest": "27.4.0",
"@types/jsonwebtoken": "8.5.8",
"@types/node": "16.11.17",
"@types/node": "16.18.106",
"jest": "27.4.5",
"nock": "13.2.4",
"ts-jest": "27.1.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"@acot/tsconfig": "0.1.0",
"@types/node": "16.11.17",
"@types/node": "16.18.106",
"npm-run-all": "4.1.5",
"ts-node": "10.4.0",
"typescript": "4.5.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@acot/tsconfig": "0.1.0",
"@acot/types": "0.0.16",
"@types/node": "16.11.17",
"@types/node": "16.18.106",
"npm-run-all": "4.1.5",
"ts-node": "10.4.0",
"typescript": "4.5.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-links": "6.4.22",
"@storybook/react": "6.4.22",
"@types/node": "16.11.17",
"@types/node": "16.18.106",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@vitejs/plugin-react": "1.3.2",
Expand Down

0 comments on commit 61f2049

Please sign in to comment.