1 Star 0 Fork 0

牛冬冬/phtv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
牛冬冬 提交于 2024-09-19 17:54 . feat: tv栏目
FROM nginx:stable-alpine
# 设置时区为东八区
RUN echo -e http://mirrors.ustc.edu.cn/alpine/v3.15/main/ > /etc/apk/repositories
RUN apk add --no-cache tzdata && \
# 设置时区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
echo "Asia/Shanghai" > /etc/timezone
# 安装 curl(如果基础镜像不包含 curl)
RUN apk add --no-cache curl
RUN rm /etc/nginx/conf.d/default.conf && mkdir -p /usr/local/nginx/html/phtv/dist
WORKDIR /usr/local/nginx/html/
ADD dist /usr/local/nginx/html/phtv/dist
COPY static.conf /etc/nginx/conf.d
ARG APP_VERSION_DATA
ENV NOTICE_SEND=$APP_VERSION_DATA
ENV NG_RUN="nginx -g \"daemon off;\""
RUN echo " $NOTICE_SEND && $NG_RUN " > notic_send.sh
RUN chmod 777 notic_send.sh
CMD ["/bin/sh","-c","./notic_send.sh"]
EXPOSE 8080
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/niu729/phtv.git
git@gitee.com:niu729/phtv.git
niu729
phtv
phtv
master

搜索帮助