This commit is contained in:
holzi1005 2025-01-07 16:25:23 +01:00
parent a284da7f7b
commit 847840260a

View file

@ -14,9 +14,9 @@ LABEL version="${VERSION}" \
org.opencontainers.image.documentation="https://meetling.de" \ org.opencontainers.image.documentation="https://meetling.de" \
org.opencontainers.image.url="https://meetling.de" org.opencontainers.image.url="https://meetling.de"
COPY inotiy.sh /inotiy.sh COPY inotify.sh /inotify.sh
RUN CHOWN +x /inotiy.sh RUN chmod +x /inotify.sh
RUN apk --no-cache add \ RUN apk --no-cache add \
inotify-tools \ inotify-tools \
@ -27,7 +27,7 @@ USER nobody
ENV CHUNK_SIZE=1048576 \ ENV CHUNK_SIZE=1048576 \
WATCH_PATH=/opt/livekit-egress \ WATCH_PATH=/opt/livekit-egress \
UPLOAD_URL= http://localhost:8000/recording/upload \ UPLOAD_URL=http://localhost:8000/recording/upload \
AUTH_TOKEN=verySecretToken \ AUTH_TOKEN=verySecretToken \
CMD ["sh", "/inotiy.sh" ] CMD ["sh", "/inotify.sh" ]