rsshub / Dockerfile
solitudeLin's picture
Update Dockerfile
efec59a verified
raw
history blame
260 Bytes
# 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