Hexo-Async-Offends/Dockerfile-hexo
offends f1cf66198e
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-07-19 15:48:50 +08:00

17 lines
264 B
Plaintext

ARG IMAGENAME=node:alpine
FROM ${IMAGENAME}
LABEL maintainer="Offends <offends4@163.com>"
RUN npm install -g hexo-cli \
&& hexo init hexo \
&& npm install --prefix /hexo/
WORKDIR /hexo
EXPOSE 4000
# CMD ["npm", "run", "server]
CMD ["hexo", "server"]