From ef1fc0c8566ea72ab0695aef56d2cff79097d779 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 22 Sep 2017 16:09:24 +0800 Subject: [PATCH] Change v1.1 to v2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b7f953..ebca9ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM centos MAINTAINER Hans RUN yum install httpd -y -RUN echo 'dockerapp v1.1' > /var/www/html/index.html +RUN echo 'dockerapp v2' > /var/www/html/index.html EXPOSE 80 CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]