From 3bdca6887b766141f31328a8f81de8130c9fe1cc Mon Sep 17 00:00:00 2001 From: luiz Date: Fri, 5 Jan 2024 16:26:55 +0100 Subject: [PATCH] cchmod --- si_kilosort25/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/si_kilosort25/Dockerfile b/si_kilosort25/Dockerfile index 498223d..54adf34 100644 --- a/si_kilosort25/Dockerfile +++ b/si_kilosort25/Dockerfile @@ -26,5 +26,8 @@ COPY *.py ./ COPY requirements.txt ./ RUN pip install -r requirements.txt +# Give execution permission to /app/main.py +RUN chmod +x /app/main.py + # Set the entrypoint -ENTRYPOINT ["python", "/app/main.py"] \ No newline at end of file +# ENTRYPOINT ["python", "/app/main.py"] \ No newline at end of file