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.
 
 
 
 
 
 

11 lines
384 B

  1. FROM httpd:2.4
  2. LABEL maintainer="LessPass <contact@lesspass.com>"
  3. LABEL name="LessPass Web Server"
  4. COPY ./httpd-default.conf /usr/local/apache2/conf/extra/httpd-default.conf
  5. COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
  6. COPY ./httpd-ssl.conf /usr/local/apache2/conf/extra/httpd-ssl.conf
  7. COPY entrypoint.sh /entrypoint.sh
  8. ENTRYPOINT ["/entrypoint.sh"]
  9. CMD ["httpd-foreground"]