From f0fecdfd68ab7bba821cef0f454964e4d4f9e40d Mon Sep 17 00:00:00 2001 From: punoko <36707250+punoko@users.noreply.github.com> Date: Wed, 1 Nov 2023 02:22:44 +0100 Subject: [PATCH] chown --- bazarr/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/Dockerfile b/bazarr/Dockerfile index 6251a50..053452e 100644 --- a/bazarr/Dockerfile +++ b/bazarr/Dockerfile @@ -8,7 +8,7 @@ RUN curl -fsSL https://github.com/morpheus65535/bazarr/releases/latest/download/ && rm bazarr.zip \ && python3 -m venv . \ && /app/bin/pip install --no-cache-dir -r requirements.txt \ - && chmod -R 1000:1000 . + && chown -R 1000:1000 . EXPOSE 6767 ENTRYPOINT ["/app/bin/python","bazarr.py","--no-update","--config","/config"] HEALTHCHECK CMD curl -f http://localhost:6767/system/status || exit 1