mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-11 14:25:25 +08:00
15 lines
518 B
Docker
15 lines
518 B
Docker
#
|
||
# - 功能: 快速构建408CSFamily镜像
|
||
# - 用法: docker build -f Faster.Dockerfile --build-arg APP_VERSION=0.0.1 -t 408CSFamily-0.0.1 .
|
||
#
|
||
|
||
FROM registry.cn-hangzhou.aliyuncs.com/142vip/nginx:1.23.0-alpine
|
||
|
||
ARG APP_VERSION
|
||
LABEL version=$APP_VERSION description="408CSFamily合集"
|
||
LABEL author="【Github&公众号】:Rong姐姐好可爱" email="fairy_408@2925.com"
|
||
|
||
# 将dist文件中的内容复制到 /usr/share/nginx/html/
|
||
COPY ./docs/.vuepress/dist/ /usr/share/nginx/html/
|
||
COPY nginx.conf /etc/nginx/
|