FROM nginx:1.10.1

RUN rm -rf /etc/nginx/conf.d/*

ADD redirect.conf /etc/nginx/conf.d/

EXPOSE 80

CMD nginx -g 'daemon off;'
