Update puppeteer healthcheck Dockerfile to run as root for Docker socket access and enhance README with common error resolution steps.
Build and Push Docker Images / build-and-push (push) Successful in 17s

This commit is contained in:
2025-07-02 10:05:48 +02:00
parent db85c56c5f
commit 275542b6ee
2 changed files with 20 additions and 1 deletions
+2 -1
View File
@@ -29,7 +29,8 @@ RUN groupadd -g 999 docker || true && \
useradd -r -g docker -u 999 healthcheck && \
chown -R healthcheck:docker /app
USER healthcheck
# Don't switch user - run as root for Docker socket access
# USER healthcheck
# Run the healthcheck script
CMD ["python", "healthcheck.py"]