9 lines
182 B
Docker
9 lines
182 B
Docker
FROM harbor.cowarobot.cn/nginx/nginx:stable
|
|
|
|
ADD ./out /usr/share/nginx/html/out
|
|
ADD ./docker/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN chmod -R 777 /usr/share/nginx/html
|
|
|
|
ENV PORT 5521
|