openweathermap-dashboard/nginx/Dockerfile

14 lines
237 B
Docker

FROM nginx:alpine
WORKDIR /etc/nginx
COPY ./nginx.conf ./conf.d/default.conf
COPY ./web/index.html ./html/report/index.html
COPY ./web/index.css ./html/report/index.css
EXPOSE 80
ENTRYPOINT [ "nginx" ]
CMD [ "-g", "daemon off;" ]