mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
17 lines
365 B
Docker
17 lines
365 B
Docker
![]() |
FROM node:latest
|
||
|
|
||
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
||
|
|
||
|
RUN apt-get -y update && apt-get -y install git && apt-get install -y vim && npm install -g hexo-cli
|
||
|
|
||
|
RUN npm install hexo-generator-feed --save
|
||
|
|
||
|
#Local Search
|
||
|
RUN npm install hexo-generator-searchdb --save
|
||
|
|
||
|
ADD bootstrap.sh /etc/bootstrap.sh
|
||
|
|
||
|
WORKDIR /blog
|
||
|
|
||
|
ENTRYPOINT ["/etc/bootstrap.sh", "nothing"]
|