mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 16:41:55 +00:00
14 lines
214 B
Docker
14 lines
214 B
Docker
FROM node:9.3-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
|
|
|
|
CMD ["/etc/bootstrap.sh", "development"]
|