25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
338 B

  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"]