Skip to content
Closed
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/pulsarr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \

RUN git clone -b $VERSION https://github.com/jamcalli/pulsarr.git /source

FROM node:23.6.0-alpine AS builder
FROM node:23.11.1-alpine AS builder

WORKDIR /app

Expand All @@ -31,7 +31,7 @@ RUN npm run build
# Ensure cache dir
RUN mkdir -p ${CACHE_DIR}

FROM node:23.6.0-alpine
FROM node:23.11.1-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions apps/pulsarr/develop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \

RUN git clone -b develop https://github.com/jamcalli/pulsarr.git /source

FROM node:23.6.0-alpine AS builder
FROM node:23.11.1-alpine AS builder

WORKDIR /app

Expand All @@ -31,7 +31,7 @@ RUN npm run build
# Ensure cache dir
RUN mkdir -p ${CACHE_DIR}

FROM node:23.6.0-alpine
FROM node:23.11.1-alpine

WORKDIR /app

Expand Down