From 13828be48df9ed7b4ae35c9f4727c54e37f610d2 Mon Sep 17 00:00:00 2001 From: Nils Mechtel <49943582+nilsmechtel@users.noreply.github.com> Date: Wed, 29 Jan 2025 16:37:14 +0100 Subject: [PATCH] fix app write permission --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eddd42a..8be1b90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ COPY ./bioimageio_colab /app/bioimageio_colab COPY ./data/example_image.tif /app/data/example_image.tif # Change ownership of the application directory to the non-root user -RUN chown -R bioimageio_colab:bioimageio_colab /app/ && chmod u+w /app/ +RUN chown -R bioimageio_colab:bioimageio_colab /app/ && chmod 777 /app/ # Switch to the non-root user USER bioimageio_colab