Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 23.10.0
pnpm 10.7.0
nodejs 23.11.0
pnpm 10.7.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage with pnpm setup
FROM node:23.10.0-slim AS base
FROM node:23.11.0-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
Expand All @@ -20,7 +20,7 @@ COPY . .
RUN pnpm run build

# Final stage - combine production dependencies and build output
FROM node:23.10.0-alpine AS runner
FROM node:23.11.0-alpine AS runner
WORKDIR /app
COPY --from=prod-deps --chown=node:node /app/node_modules ./node_modules
COPY --from=build --chown=node:node /app/dist ./dist
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
"sourcemap": true,
"clean": true
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].1"
}