Files
Dockerfiles/hexo/Dockerfile
2018-01-15 15:12:12 +08:00

12 lines
202 B
Docker

FROM node:9.3-alpine
MAINTAINER Newnius <newnius.cn@gmail.com>
RUN apk update && apk add git
RUN npm install hexo-cli -g
ADD bootstrap.sh /etc/bootstrap.sh
CMD ["/etc/bootstrap.sh", "development"]