Files
Dockerfiles/hexo/Dockerfile

14 lines
221 B
Docker
Raw Normal View History

2018-01-15 15:12:12 +08:00
FROM node:9.3-alpine
2016-11-11 18:33:18 +08:00
2018-01-15 15:12:12 +08:00
MAINTAINER Newnius <newnius.cn@gmail.com>
2016-11-11 18:33:18 +08:00
2018-01-15 15:35:37 +08:00
RUN apk --no-cache add git
2016-12-01 11:51:10 +08:00
2018-01-15 15:12:12 +08:00
RUN npm install hexo-cli -g
2016-11-30 20:04:30 +08:00
2016-11-11 18:33:18 +08:00
ADD bootstrap.sh /etc/bootstrap.sh
2018-01-15 15:26:41 +08:00
WORKDIR /blog
2018-01-15 17:11:34 +08:00
ENTRYPOINT ["/etc/bootstrap.sh", "development"]