You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. FROM centos:7
  2. MAINTAINER "LessPass <contact@lesspass.com>"
  3. LABEL name="LessPass Web Server"
  4. RUN yum -y --setopt=tsflags=nodocs update && \
  5. yum -y --setopt=tsflags=nodocs install httpd mod_ssl openssl python python-jinja2 && \
  6. yum clean all
  7. EXPOSE 80 443
  8. ADD . /app
  9. RUN chmod +x /app/entrypoint.sh
  10. CMD ["/app/entrypoint.sh"]