File tree 3 files changed +9
-7
lines changed
deployment/hashnode-starter-kit
packages/blog-starter-kit/themes/enterprise 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Stage 1: Building the code
2
- FROM node:20 as builder
2
+ FROM node:23.7.0 as builder
3
3
4
4
WORKDIR /app
5
5
@@ -8,7 +8,7 @@ COPY package*.json ./
8
8
COPY pnpm*.yaml ./
9
9
10
10
# Install pre-install deps
11
- RUN npm install --global pnpm
11
+ RUN npm install --global pnpm@9.9.0
12
12
RUN pnpm install
13
13
14
14
# Copy the code
@@ -27,4 +27,4 @@ RUN cd packages/blog-starter-kit/themes/enterprise && \
27
27
EXPOSE 3000
28
28
29
29
ENTRYPOINT ["/bin/sh" , "-c" , "cd /app/packages/blog-starter-kit/themes/enterprise && /usr/local/bin/pnpm run start" ]
30
- # # RUN pnpm dev
30
+ # # RUN pnpm dev
Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ deployment:
47
47
resources :
48
48
limits :
49
49
cpu : 1
50
- memory : 400Mi
50
+ memory : 800Mi
51
51
requests :
52
52
cpu : 100m
53
- memory : 400Mi
53
+ memory : 800Mi
54
54
55
55
# This is because for now we don't run as non-root
56
56
# security:
Original file line number Diff line number Diff line change 12
12
},
13
13
"dependencies" : {
14
14
"@graphql-typed-document-node/core" : " ^3.2.0" ,
15
+ "@headlessui/react" : " ^1.7.17" ,
16
+ "@heroicons/react" : " ^2.0.18" ,
15
17
"@radix-ui/react-dialog" : " ^1.0.5" ,
16
18
"@radix-ui/react-dropdown-menu" : " ^2.0.6" ,
17
19
"@radix-ui/react-popover" : " ^1.0.7" ,
18
- "@radix-ui/react-scroll-area" : " ^1.0.2 " ,
20
+ "@radix-ui/react-scroll-area" : " ^1.0.5 " ,
19
21
"@starter-kit/utils" : " workspace:*" ,
20
22
"@tailwindcss/typography" : " ^0.5.10" ,
21
23
"@vercel/og" : " ^0.5.18" ,
27
29
"react-waypoint" : " ^10.3.0" ,
28
30
"remark" : " ^14.0.2" ,
29
31
"remark-html" : " ^15.0.1" ,
30
- "tailwind-merge" : " ^1.13.2 " ,
32
+ "tailwind-merge" : " ^2.2.0 " ,
31
33
"uuid" : " ^9.0.1"
32
34
},
33
35
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments