Dockerfile 479 B

123456789101112131415161718192021222324
  1. FROM registry.access.redhat.com/ubi8/ubi as base-ubi-8
  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. yum clean all -y && \
  13. rm -rf /var/cache/yum
  14. # kubernetes pod health check
  15. COPY healthz.sh /
  16. RUN chmod +x /healthz.sh
  17. EXPOSE 80
  18. CMD ["/usr/sbin/apachectl"]