Skip to content

Commit

Permalink
chore(deps): update node.js to v20.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 25, 2024
1 parent 8faca97 commit 540833a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion paperboy-core/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.14.0-buster-slim
FROM node:20.15.0-buster-slim
USER node
WORKDIR /home/node/
COPY --chown=node package*.json ./
Expand Down
9 changes: 5 additions & 4 deletions paperboy-core/package-lock.json

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

2 changes: 1 addition & 1 deletion paperboy-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.14.5",
"@types/node": "20.14.8",
"@types/retry": "0.12.5",
"@types/shelljs": "0.8.15",
"@types/winston": "2.4.4",
Expand Down
6 changes: 3 additions & 3 deletions paperboy-push-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
FROM node:20.14.0-buster-slim AS build
FROM node:20.15.0-buster-slim AS build
RUN apt-get update && \
apt-get install -y build-essential
WORKDIR /home/node/app
COPY package*.json ./
RUN npm i
COPY --chown=node . ./

FROM node:20.14.0-buster-slim AS development
FROM node:20.15.0-buster-slim AS development
USER node
WORKDIR /home/node/app
COPY --from=build --chown=node /home/node/app ./
CMD npm run start:dev

FROM node:20.14.0-buster-slim AS production
FROM node:20.15.0-buster-slim AS production
USER node
RUN mkdir -p /home/node/app
WORKDIR /home/node/app
Expand Down
9 changes: 5 additions & 4 deletions paperboy-push-service/package-lock.json

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

2 changes: 1 addition & 1 deletion paperboy-push-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@types/async-lock": "1.4.2",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.14.5",
"@types/node": "20.14.8",
"@types/retry": "0.12.5",
"@types/supertest": "6.0.2",
"jest": "29.7.0",
Expand Down

0 comments on commit 540833a

Please sign in to comment.