From 847840260a726b9c35eefbaa18fb6d0f069ca151 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Tue, 7 Jan 2025 16:25:23 +0100 Subject: [PATCH] fix typo --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7b9df6..65c9348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ LABEL version="${VERSION}" \ org.opencontainers.image.documentation="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 \ inotify-tools \ @@ -27,7 +27,7 @@ USER nobody ENV CHUNK_SIZE=1048576 \ WATCH_PATH=/opt/livekit-egress \ - UPLOAD_URL= http://localhost:8000/recording/upload \ + UPLOAD_URL=http://localhost:8000/recording/upload \ AUTH_TOKEN=verySecretToken \ -CMD ["sh", "/inotiy.sh" ] \ No newline at end of file +CMD ["sh", "/inotify.sh" ] \ No newline at end of file