Dockerfile 418 B

12345678910111213141516171819202122
  1. FROM registry.access.redhat.com/ubi7/ubi as base-ubi-7
  2. LABEL description="Hue Project https://github.com/cloudera/hue"
  3. # Set the environment variable
  4. ENV NAME="basehue"
  5. RUN set -eux; \
  6. yum install -y \
  7. hostname \
  8. httpd \
  9. httpd-tools \
  10. gettext \
  11. nmap-ncat
  12. # kubernetes pod health check
  13. COPY healthz.sh /
  14. RUN chmod +x /healthz.sh
  15. EXPOSE 80
  16. CMD ["/usr/sbin/apachectl"]