FROM nginx:alpine

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

COPY ["Dekra WebSite", "/usr/share/nginx/html"]

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

EXPOSE 80

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