Skip to content

Commit bc0df3e

Browse files
authored
chore: use node 20 (#42)
1 parent 7d8e6ea commit bc0df3e

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:18-alpine AS deps
1+
FROM node:20-alpine AS deps
22
WORKDIR /app
33
RUN npm install -g pnpm
44
COPY package.json pnpm-lock.yaml ./
55
RUN pnpm install --frozen-lockfile
66

7-
FROM node:18-alpine AS builder
7+
FROM node:20-alpine AS builder
88
WORKDIR /app
99
RUN npm install -g pnpm
1010
COPY . .
@@ -13,7 +13,7 @@ RUN pnpm build
1313
RUN pnpm prune --prod
1414

1515

16-
FROM node:18-alpine AS runner
16+
FROM node:20-alpine AS runner
1717
WORKDIR /app
1818

1919
ENV NODE_ENV production

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@
1616
"author": "",
1717
"license": "ISC",
1818
"devDependencies": {
19-
"@types/node": "^20.2.3",
19+
"@types/node": "^20.2.5",
2020
"@types/prettier": "^2.7.2",
2121
"tsc-watch": "^6.0.4",
2222
"typescript": "^5.0.4"
2323
},
2424
"dependencies": {
2525
"@effect-http/client": "^0.26.1",
26-
"@effect/data": "^0.12.2",
26+
"@effect/data": "^0.12.3",
2727
"@effect/io": "^0.25.13",
2828
"@effect/schema": "^0.19.3",
2929
"@effect/stream": "^0.21.1",
3030
"dfx": "^0.45.10",
3131
"dotenv": "^16.0.3",
32-
"effect-schema-class": "^0.2.4",
32+
"effect-schema-class": "^0.3.0",
3333
"html-entities": "^2.3.3",
3434
"openai": "^3.2.1",
3535
"prettier": "^2.8.8"

pnpm-lock.yaml

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)