gitea/peertube runner foundations. secrets mgmt is a blocker. Adding that to my shell framework and will vendor that framework into here.

This commit is contained in:
2025-07-15 10:53:19 -05:00
parent b4b36b6084
commit 8c402e3084
5 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk add --no-cache nodejs npm ffmpeg
RUN npm install -g @peertube/peertube-runner
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]