Dockerfiles/hexo/Dockerfile

14 lines
217 B
Docker
Raw Normal View History

2018-01-15 07:12:12 +00:00
FROM node:9.3-alpine
2016-11-11 10:33:18 +00:00
2018-01-15 07:12:12 +00:00
MAINTAINER Newnius <newnius.cn@gmail.com>
2016-11-11 10:33:18 +00:00
2018-01-15 07:12:12 +00:00
RUN apk update && apk add git
2016-12-01 03:51:10 +00:00
2018-01-15 07:12:12 +00:00
RUN npm install hexo-cli -g
2016-11-30 12:04:30 +00:00
2016-11-11 10:33:18 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
2018-01-15 07:26:41 +00:00
WORKDIR /blog
2018-01-15 07:12:12 +00:00
CMD ["/etc/bootstrap.sh", "development"]