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