10 lines
201 B
Docker
10 lines
201 B
Docker
FROM registry.cn-hangzhou.aliyuncs.com/dockerhub_mirror/nginx
|
|
|
|
COPY ./dist /data
|
|
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
ADD ymt-ui.conf /etc/nginx/conf.d/default.conf
|
|
|
|
RUN /bin/bash -c 'echo init ok'
|