Add catch all server with default error page

This commit is contained in:
2016-03-25 17:51:56 +01:00
parent 270c2b97fc
commit f28132bd23
4 changed files with 24 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ MAINTAINER Joachim Lusiardi
RUN apt-get update; \
apt-get install -y nginx;
RUN mkdir /default
ADD index.html /default/index.html
RUN chmod -R 777 /default
ADD nginx.conf /etc/nginx.conf
ADD start.sh /start.sh
RUN chmod +x /start.sh