FROM httpd:2.4-alpine MAINTAINER Candid Dauth RUN apk add --no-cache nodejs yarn COPY ./ /tmp/facilmap-docs RUN cd /tmp/facilmap-docs && yarn install && yarn build && mv src/.vuepress/dist/* /usr/local/apache2/htdocs/ && rm -rf /tmp/facilmap-docs