You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
451 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

FROM openresty/openresty:1.21.4.1-0-alpine AS runner
# ENV TZ这样的用法通常是用来设置时区环境变量TZ代表Time Zone
ENV TZ=Asia/Shanghai
# 将本地的Nginx配置文件复制到镜像中的指定路径
COPY ./nginx.conf /usr/local/openresty/nginx/conf/nginx.conf
# 将本地的静态资源文件复制到镜像中的指定路径
COPY /static /usr/local/openresty/nginx/html
# 暴露Nginx服务的端口
EXPOSE 80