From bdfae12aea2a5607691b389be8321e095a543ed7 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 1 Sep 2025 02:19:32 +0800 Subject: [PATCH] Make start.sh executable --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index df2fd61..a2c3e62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,9 @@ FROM python:3.13.7-slim AS runtime ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 WORKDIR /app + +RUN chmod +x /app/.docker/start.sh + # Copy the virtual environment from the builder stage COPY --from=builder /app /app