Make start.sh executable

This commit is contained in:
Keannu Christian Bernasol 2025-09-01 02:19:32 +08:00
parent fbb76f8196
commit bdfae12aea

View file

@ -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