Dockerfiles/hexo/Dockerfile

14 lines
220 B
Docker
Raw Normal View History

2020-02-19 14:34:19 +00:00
FROM node:13-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:35:37 +00:00
RUN apk --no-cache add git
2016-12-01 03:51:10 +00:00
2019-03-27 05:21:30 +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 09:11:34 +00:00
ENTRYPOINT ["/etc/bootstrap.sh", "development"]