Spaces:
Running
Running
| # Dockerfile.browserless | |
| FROM browserless/chrome | |
| # Set ulimits | |
| RUN ulimit -c unlimited | |
| # Expose port | |
| EXPOSE 3000 | |
| # Health check | |
| HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ | |
| CMD curl -f http://localhost:3000/pressure || exit 1 |