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
4 changes: 2 additions & 2 deletions apps/audiobookshelf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ RUN apk update && apk upgrade && \
RUN git clone -b $VERSION https://github.com/advplyr/audiobookshelf.git /source

### STAGE 0: Build client ###
FROM node:20-alpine AS build
FROM node:24-alpine AS build
WORKDIR /client
COPY --from=cloner /source/client /client
RUN npm ci && npm cache clean --force
RUN npm run generate

### STAGE 1: Build server ###
FROM node:20-alpine
FROM node:24-alpine

ENV NODE_ENV=production

Expand Down
2 changes: 1 addition & 1 deletion apps/cleanuparr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN mkdir -p /src || exit 1 \
&& git clone --depth 1 --branch v${VERSION} https://github.com/Cleanuparr/Cleanuparr.git /src

# Build Angular frontend
FROM --platform=$BUILDPLATFORM node:18-alpine AS frontend-build
FROM --platform=$BUILDPLATFORM node:24-alpine AS frontend-build
WORKDIR /app
COPY --from=cloner /src/code/frontend/package*.json ./
RUN npm ci && npm install -g @angular/cli
Expand Down
2 changes: 1 addition & 1 deletion apps/profilarr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk update && apk upgrade && \
RUN git clone -b $VERSION https://github.com/Dictionarry-Hub/profilarr.git /source

### STAGE 1: Build Profilarr ###
FROM node:20-alpine AS build
FROM node:24-alpine AS build
COPY --from=cloner /source /source
WORKDIR /source

Expand Down