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.
24 lines
527 B
24 lines
527 B
# 基础镜像 |
|
FROM nginx:1.23 |
|
# 维护者信息 |
|
MAINTAINER shuai.niu@foxmail.com |
|
|
|
# 设置环境变量 |
|
ENV PROD_API_URL http://localhost:8080 |
|
|
|
# 拷贝前端工程文件 |
|
ADD dist/ /usr/share/nginx/html/ |
|
|
|
# 拷贝镜像启动程序 |
|
ADD entry-point.sh /entry-point.sh |
|
RUN chmod a+x /entry-point.sh |
|
|
|
# 拷贝nginx配置文件 |
|
ADD nginx-server.conf /etc/nginx/conf.d/ |
|
|
|
# 设置时区 |
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime |
|
RUN echo 'Asia/Shanghai' >/etc/timezone |
|
|
|
# 入口程序 |
|
ENTRYPOINT ["/entry-point.sh"] |