Files
interpretations/Dockerfile
T
2026-04-04 08:30:47 -04:00

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