2
0
Files
be.wfc/docker/nginx/dockerfile
2024-12-30 12:06:02 +08:00

11 lines
218 B
Plaintext

# 基础镜像
FROM nginx
# author
MAINTAINER wfc
# 工作目录
WORKDIR /opt/wfc/portal
# 复制conf文件到路径
COPY ./conf/nginx.conf /etc/nginx/nginx.conf
# 复制html文件到路径
COPY ./html /opt/wfc/portal