SocialNetworks/Dockerfile

14 lines
399 B
Docker
Raw Normal View History

2025-07-15 11:07:24 +08:00
#指定对应版本镜像
FROM nginx:1.25.3
# 该镜像维护者信息
LABEL maintainer="su"
# 将本地 dist 文件夹中的内容复制到容器中的 /usr/local/nginx/html/ 目录下
COPY dist/ /usr/local/nginx/html/
# 将本地 nginx.conf 文件复制到容器中的 /etc/nginx/nginx.conf 路径
COPY nginx.conf /etc/nginx/nginx.conf
# 构建镜像时执行的命令
RUN echo 'echo init ok'