Files
Anfioo adfd019d2d 江门
1
2026-02-01 15:37:55 +08:00

15 lines
305 B
Docker

FROM nginx:alpine
MAINTAINER anfioo
# 把当前目录下的 nginx.conf 复制到容器的 Nginx 配置目录
COPY nginx.conf /etc/nginx/conf.d/default.conf
# 把 html 目录复制到容器的 /usr/share/nginx/html
COPY html /MicroCommunityMallWeb
EXPOSE 8115
ENTRYPOINT ["nginx","-g","daemon off;"]