Initial voice_history addon

This commit is contained in:
lollen 2026-05-17 19:17:51 +02:00
commit d870cb0d82
7 changed files with 210 additions and 0 deletions

10
voice_history/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
ARG BUILD_FROM
FROM $BUILD_FROM
RUN apk add --no-cache nodejs
WORKDIR /app
COPY voice-history.mjs run.sh ./
RUN chmod +x /app/run.sh
CMD ["/app/run.sh"]