Files
Dockerfiles/hexo/Dockerfile
2020-02-19 22:34:19 +08:00

14 lines
220 B
Docker

FROM node:13-alpine
MAINTAINER Newnius <newnius.cn@gmail.com>
RUN apk --no-cache add git
RUN npm install hexo-cli -g
ADD bootstrap.sh /etc/bootstrap.sh
WORKDIR /blog
ENTRYPOINT ["/etc/bootstrap.sh", "development"]