From 419cbd5f3e277fe816003263c2e2c18e6bc90800 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 4 Apr 2026 08:30:47 -0400 Subject: [PATCH] Dockerfile: install zip for album download generation Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 12d5ee9..3f067a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM nginx:alpine +RUN apk add --no-cache zip COPY site/ /usr/share/nginx/html/ RUN cd /usr/share/nginx/html/mp3s && zip -0 ../interpretations-full-album.zip *.mp3 EXPOSE 80