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.
|
- FROM centos:7
-
- MAINTAINER "LessPass <contact@lesspass.com>"
-
- LABEL name="LessPass Web Server"
-
- RUN yum -y --setopt=tsflags=nodocs update && \
- yum -y --setopt=tsflags=nodocs install httpd mod_ssl openssl python python-jinja2 && \
- yum clean all
-
- EXPOSE 80 443
-
- ADD . /app
- RUN chmod +x /app/entrypoint.sh
-
- CMD ["/app/entrypoint.sh"]
|