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 apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS base
FROM node:24-alpine AS base
WORKDIR /app
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -34,7 +34,7 @@ COPY --from=builder /app ./
RUN pnpm --filter fintrack-api deploy --prod /deploy

# ── runner ────────────────────────────────────────────────────────────────────
FROM node:22-alpine AS runner
FROM node:24-alpine AS runner
WORKDIR /app

ENV NODE_ENV=production
Expand Down
4 changes: 2 additions & 2 deletions apps/bot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS base
FROM node:24-alpine AS base
WORKDIR /app
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -31,7 +31,7 @@ COPY --from=builder /app ./
RUN pnpm --filter fintrack-bot deploy --prod /deploy

# ── runner ────────────────────────────────────────────────────────────────────
FROM node:22-alpine AS runner
FROM node:24-alpine AS runner
WORKDIR /app

ENV NODE_ENV=production
Expand Down
4 changes: 2 additions & 2 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS base
FROM node:24-alpine AS base
WORKDIR /app
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN pnpm --filter @fintrack/types build
RUN pnpm --filter fintrack-web build

# ── runner ────────────────────────────────────────────────────────────────────
FROM node:22-alpine AS runner
FROM node:24-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.runner
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine
FROM node:24-alpine
COPY package.json /tmp/package.json
RUN corepack enable && \
PNPM_VERSION=$(node -e "process.stdout.write(require('/tmp/package.json').packageManager.split('@')[1])") && \
Expand Down
Loading