diff --git a/Dockerfile b/Dockerfile index d81cf2f..f951fc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:20-alpine AS builder +FROM node:26-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci @@ -7,7 +7,7 @@ COPY . . RUN npm run build # Production stage -FROM node:20-alpine +FROM node:26-alpine WORKDIR /app # Install ffmpeg (required by fluent-ffmpeg) with minimal footprint