kopia lustrzana https://github.com/FacilMap/facilmap
9 wiersze
269 B
Docker
9 wiersze
269 B
Docker
|
FROM httpd:2.4-alpine
|
||
|
MAINTAINER Candid Dauth <cdauth@cdauth.eu>
|
||
|
|
||
|
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
|