Skip to content
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Multi-stage build for production deployment

# Stage 1: Dependencies
FROM node:24-alpine AS deps
FROM node:26-alpine AS deps
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app

Expand All @@ -13,7 +13,7 @@ COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile

# Stage 2: Builder
FROM node:24-alpine AS builder
FROM node:26-alpine AS builder
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app

Expand All @@ -29,7 +29,7 @@ ENV NODE_ENV=production
RUN pnpm build

# Stage 3: Runner
FROM node:24-alpine AS runner
FROM node:26-alpine AS runner
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.iptv-worker
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# IPTV Cache Worker Dockerfile
# Lightweight container for background IPTV playlist caching

FROM node:24-alpine
FROM node:26-alpine

RUN corepack enable && corepack prepare pnpm@latest --activate

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.podcast-worker
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Podcast Notifier Worker Dockerfile
# Background worker for checking podcast RSS feeds and sending notifications

FROM node:24-alpine
FROM node:26-alpine

RUN corepack enable && corepack prepare pnpm@latest --activate

Expand Down
Loading