Skip to content

Commit

Permalink
chore: bump strapi and node (22)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreiffers committed Feb 14, 2025
1 parent 9ceb182 commit 3652825
Show file tree
Hide file tree
Showing 3 changed files with 442 additions and 818 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS build
FROM node:22-alpine AS build
# Installing libvips-dev for sharp Compatibility
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev > /dev/null 2>&1
ARG NODE_ENV=production
Expand All @@ -13,8 +13,8 @@ COPY ./ .
RUN yarn build


FROM node:20-alpine
RUN apk add --no-cache vips-dev
FROM node:22-alpine
RUN apk update && apk add --no-cache vips-dev && apk upgrade -a
COPY setup-msmtp.sh startup.sh /
RUN apk add msmtp
RUN chmod 770 /setup-msmtp.sh /startup.sh
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"lint": "eslint"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/core": "^7.26.8",
"@babel/runtime": "^7.26.0",
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.2",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.4",
"@codemirror/search": "^6.5.9",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.1",
"@codemirror/view": "^6.36.2",
"@koa/router": "^13.1.0",
"@lezer/common": "^1.2.2",
"@lezer/common": "^1.2.3",
"codemirror": "^6.0.1",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
Expand All @@ -35,23 +35,23 @@
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"koa": "^2.15.3",
"prettier": "^3.5.0"
"koa": "^2.15.4",
"prettier": "^3.5.1"
},
"dependencies": {
"@strapi/icons": "^1.19.0",
"@strapi/plugin-graphql": "^5.9.0",
"@strapi/plugin-users-permissions": "^5.9.0",
"@strapi/provider-email-nodemailer": "5.9.0",
"@strapi/strapi": "^5.9.0",
"pg": "^8.13.1",
"@strapi/plugin-graphql": "^5.10.2",
"@strapi/plugin-users-permissions": "^5.10.2",
"@strapi/provider-email-nodemailer": "5.10.2",
"@strapi/strapi": "^5.10.2",
"pg": "^8.13.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
"styled-components": "^6.1.15"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"node": ">=18.0.0 <=22.x.x",
"npm": ">=6.0.0"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
Expand Down
Loading

0 comments on commit 3652825

Please sign in to comment.