Files
Dockerfiles/hexo/Dockerfile

22 lines
412 B
Docker
Raw Normal View History

2016-11-11 18:33:18 +08:00
FROM node:latest
2017-07-18 23:32:54 +08:00
MAINTAINER Newnius <docker@newnius.com>
2016-11-11 18:33:18 +08:00
2017-03-30 17:11:20 +08:00
RUN apt-get -y update && apt-get -y install git && npm install -g hexo-cli
2016-11-11 18:33:18 +08:00
RUN npm install hexo-generator-feed --save
#Local Search
RUN npm install hexo-generator-searchdb --save
2016-12-01 11:51:10 +08:00
RUN npm install --save hexo-algolia@0.2.0
RUN npm install hexo-deployer-git --save
2016-11-30 20:04:30 +08:00
2016-11-11 18:33:18 +08:00
ADD bootstrap.sh /etc/bootstrap.sh
WORKDIR /blog
ENTRYPOINT ["/etc/bootstrap.sh"]