Skip to content

Commit

Permalink
fix(docker): use node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed May 8, 2024
1 parent de132d7 commit 83474d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-alpine as build-runner
FROM node:22-alpine as build-runner

WORKDIR /tmp/app

Expand All @@ -13,7 +13,7 @@ COPY tsconfig.json .

RUN pnpm run build

FROM node:lts-alpine as prod-deps-runner
FROM node:22-alpine as prod-deps-runner

WORKDIR /tmp/app

Expand All @@ -23,7 +23,7 @@ COPY pnpm-lock.yaml .
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile --only=production

FROM node:lts-alpine as prod-runner
FROM node:22-alpine as prod-runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "misscord",
"type": "module",
"version": "0.2.0",
"version": "0.2.1",
"description": "A Misskey antenna to Discord bridge",
"main": "./dist/index.js",
"scripts": {
Expand Down

0 comments on commit 83474d2

Please sign in to comment.