FROM nginx:alpine

RUN rm -rf /usr/share/nginx/html/*

COPY webapp/ /usr/share/nginx/html

COPY vhost.conf /etc/nginx/conf.d/default.conf

EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]