mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-23 05:40:20 +08:00
9 lines
153 B
Docker
9 lines
153 B
Docker
|
FROM nginx
|
||
|
|
||
|
COPY ./dist /data
|
||
|
|
||
|
RUN rm /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
ADD pigx-ui.conf /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
RUN /bin/bash -c 'echo init ok'
|