FROM ubuntu:14.04.3

RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install \
    nginx

RUN apt-get install -y curl

ADD nginx.conf /app/

EXPOSE 80

CMD nginx -c /app/nginx.conf
