facilmap/docs/Dockerfile

11 wiersze
333 B
Docker
Czysty Zwykły widok Historia

2021-04-08 20:28:16 +00:00
FROM httpd:2.4-alpine
MAINTAINER Candid Dauth <cdauth@cdauth.eu>
RUN apk add --no-cache nodejs yarn
2021-04-24 14:17:12 +00:00
RUN echo "ErrorDocument 404 /404.html" >> /usr/local/apache2/conf/httpd.conf
2021-04-08 20:28:16 +00:00
COPY ./ /tmp/facilmap-docs
2021-04-17 12:43:38 +00:00
RUN cd /tmp/facilmap-docs && yarn install && yarn build && mv dist/* /usr/local/apache2/htdocs/ && rm -rf /tmp/facilmap-docs