3 Star 0 Fork 0

mirrors_gladiopeace/highlight.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 518 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Dockerfile for highlight.js
#
# Build image:
# docker build -t highlight-js .
#
# Run container:
# docker run --rm -it --publish 8080:80 highlight-js
#
# And open a browser to http://localhost:8080
FROM node:12-slim
RUN apt-get update -qq \
&& apt-get install --yes --no-install-recommends \
nginx git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /var/www/html
COPY package*.json /var/www/html/
RUN npm install
COPY . .
RUN node tools/build.js :common
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_gladiopeace/highlight.js.git
git@gitee.com:mirrors_gladiopeace/highlight.js.git
mirrors_gladiopeace
highlight.js
highlight.js
main

搜索帮助