File tree Expand file tree Collapse file tree 5 files changed +98
-118
lines changed
Expand file tree Collapse file tree 5 files changed +98
-118
lines changed Original file line number Diff line number Diff line change 2222 id-token : ' write'
2323 steps :
2424 - name : Checkout
25- uses : actions/checkout@v4
25+ uses : actions/checkout@v5
2626 - name : Set up Docker Buildx
2727 uses : docker/setup-buildx-action@v3
2828
4646 fi
4747 echo "NEXT_PUBLIC_GTM_ID=${{ secrets.GTM_ID }}" >> $GITHUB_ENV
4848 - name : Build Docker images
49- uses : docker/bake-action@v5
49+ uses : docker/bake-action@v6
5050 env :
5151 WORDPRESS_API_URL : ${{ secrets.WORDPRESS_API_URL }}
5252 with :
Original file line number Diff line number Diff line change 1818 runs-on : ubuntu-latest
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v4
21+ uses : actions/checkout@v5
2222 - name : Install PNPM
2323 uses : pnpm/action-setup@v4
2424 - name : Cache PNPM
Original file line number Diff line number Diff line change 1- # syntax=docker/dockerfile:1.4
1+ # syntax=docker/dockerfile:1.18
22
3-
4- # Versions
53FROM node:22-alpine AS node_upstream
64
75
@@ -22,15 +20,15 @@ RUN apk upgrade && \
2220# Next.js collects completely anonymous telemetry data about general usage.
2321# Learn more here: https://nextjs.org/telemetry
2422# Delete the following line in case you want to enable telemetry during dev and build.
25- ENV NEXT_TELEMETRY_DISABLED 1
23+ ENV NEXT_TELEMETRY_DISABLED= 1
2624
2725
2826# Development image
29- FROM base as dev
27+ FROM base AS dev
3028
3129EXPOSE 3000
32- ENV PORT 3000
33- ENV HOSTNAME localhost
30+ ENV PORT= 3000
31+ ENV HOSTNAME= localhost
3432
3533CMD ["sh" , "-c" , "pnpm install; pnpm dev" ]
3634
@@ -56,9 +54,9 @@ FROM node_upstream AS prod
5654
5755WORKDIR /srv/app
5856
59- ENV NODE_ENV production
57+ ENV NODE_ENV= production
6058# Delete the following line in case you want to enable telemetry during runtime.
61- ENV NEXT_TELEMETRY_DISABLED 1
59+ ENV NEXT_TELEMETRY_DISABLED= 1
6260
6361RUN addgroup --system --gid 1001 nodejs; \
6462 adduser --system --uid 1001 nextjs
@@ -78,7 +76,7 @@ USER nextjs
7876
7977EXPOSE 3000
8078
81- ENV PORT 3000
82- ENV HOSTNAME "0.0.0.0"
79+ ENV PORT= 3000
80+ ENV HOSTNAME= "0.0.0.0"
8381
8482CMD ["node" , "server.js" ]
Original file line number Diff line number Diff line change 3030 "prismjs" : " ^1.30.0" ,
3131 "prop-types" : " ^15.8.1" ,
3232 "raw-loader" : " ^4.0.2" ,
33- "react" : " 19.1.0 " ,
34- "react-dom" : " 19.1.0 " ,
33+ "react" : " 19.1.1 " ,
34+ "react-dom" : " 19.1.1 " ,
3535 "react-hook-form" : " ^7.63.0" ,
3636 "react-use" : " ^17.6.0" ,
3737 "remark-frontmatter" : " ^5.0.0" ,
4040 "sanitize-html" : " ^2.17.0" ,
4141 "sharp" : " ^0.34.4" ,
4242 "swr" : " ^2.3.6" ,
43- "ts-node" : " ^10.9.2" ,
44- "typescript" : " ^5.9.2"
43+ "ts-node" : " ^10.9.2"
4544 },
4645 "devDependencies" : {
47- "typescript" : " ^5" ,
48- "@eslint/eslintrc" : " ^3" ,
49- "@tailwindcss/postcss" : " ^4" ,
46+ "@eslint/eslintrc" : " ^3.3.1" ,
47+ "@tailwindcss/postcss" : " ^4.1.13" ,
5048 "@tailwindcss/typography" : " ^0.5.19" ,
51- "@types/node" : " ^22" ,
52- "@types/react" : " ^19 " ,
53- "@types/react-dom" : " ^19" ,
49+ "@types/node" : " ^22.18.7 " ,
50+ "@types/react" : " 19.1.16 " ,
51+ "@types/react-dom" : " ^19.1.9 " ,
5452 "@types/request-ip" : " ^0.0.41" ,
5553 "@types/sanitize-html" : " ^2.16.0" ,
5654 "eslint" : " ^9.36.0" ,
5755 "eslint-config-next" : " 15.5.4" ,
5856 "eslint-config-prettier" : " ^10.1.8" ,
5957 "prettier" : " ^3.6.2" ,
60- "tailwindcss" : " ^4"
58+ "tailwindcss" : " ^4.1.13" ,
59+ "typescript" : " ^5.9.2"
6160 },
6261 "pnpm" : {
6362 "overrides" : {
You can’t perform that action at this time.
0 commit comments