micro-app/packages/icpx-workflow/Dockerfile

10 lines
204 B
Docker
Raw Permalink Normal View History

2023-05-30 19:27:03 +08:00
#### 1.拉取自定义镜像名称
FROM 10.0.88.243/icpx/base_frontend:0.0.9
# 2.将打包后的代码复制到运行位置
COPY ./dist /var/www
# 3.启动nginx
ENTRYPOINT ["nginx","-g","daemon off;"]