From cd51cb6d691e11191d94aed4b79d8f569fbe4d4c Mon Sep 17 00:00:00 2001 From: jessikitty Date: Mon, 15 Jun 2026 10:31:16 +1000 Subject: [PATCH] v1.5.2 - add tzdata for TZ-aware sleep schedule --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7236766..5731ced 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,10 @@ FROM node:18-alpine LABEL maintainer="Frambe" LABEL description="Frambe — lightweight digital photo frame for Immich" +# tzdata lets the TZ env var set the container's local time, which the +# sleep scheduler relies on. Without it Alpine defaults to UTC. +RUN apk add --no-cache tzdata + WORKDIR /app COPY package.json ./