From 045b16123e1b96dfaffe7e5ae379fce7b9525c41 Mon Sep 17 00:00:00 2001 From: ForeverPyrite Date: Tue, 7 Jan 2025 15:42:44 -0500 Subject: [PATCH] fixed a silly dockerfile issue, I think --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32522bf..6a4caff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,8 +21,7 @@ RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt COPY . /app # Make start.sh executable -COPY start.sh . -RUN chmod +x ./start.sh +RUN chmod +x /app/start.sh # Expose the port the app runs on EXPOSE 1986