Add health check script and improve Redis debugging

This commit is contained in:
Andreas Dueren
2025-07-15 08:33:54 -06:00
parent 34c2d30c0c
commit 12917e3dd9
4 changed files with 41 additions and 4 deletions

View File

@@ -22,10 +22,11 @@ RUN mkdir -p /tmp/data /app/data && \
# Copy startup scripts
COPY start.sh /app/code/
COPY healthcheck.js /app/code/
COPY nginx.conf /etc/nginx/sites-available/default
# Make scripts executable
RUN chmod +x /app/code/start.sh
RUN chmod +x /app/code/start.sh /app/code/healthcheck.js
# Install supervisord and netcat for process management and connectivity checks
RUN apt-get update && \