mirror of
https://github.com/kennethreitz/interpretations.git
synced 2026-06-05 06:46:15 +00:00
419cbd5f3e
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 lines
173 B
Docker
6 lines
173 B
Docker
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
|