Files
airport-chengdu-web/Dockerfile
T

4 lines
116 B
Docker
Raw Normal View History

2018-11-05 21:57:56 +08:00
FROM nginx:1.15.5-alpine
2018-11-06 15:50:14 +08:00
COPY ./dist/cd-airport/ /usr/share/nginx/html/
2018-11-05 23:42:10 +08:00
EXPOSE 80
2018-11-05 21:57:56 +08:00
CMD ["nginx", "-g", "daemon off;"]