Sign inSign up

ipple1986/hexo

By ipple1986

Updated over 9 years ago

Hexo static website image

Image
18

50K+

Dockerfile
FROM centos:7
ENV LANG C.UTF-8
LABEL author=ipple1986 [email protected] site=https://zhaozhiwen.net.cn
WORKDIR /opt/hexo
RUN yum install -y  epel-release && \
yum install -y nodejs && npm config set registry https://registry.npm.taobao.org \
&& npm install hexo-cli -g  && hexo init ipple1986 && cd ipple1986 && npm install
WORKDIR ipple1986
EXPOSE 4000
ENTRYPOINT ["hexo","server"]