mirror of
https://github.com/Sosokker/openweathermap-dashboard.git
synced 2025-12-18 13:44:04 +01:00
14 lines
237 B
Docker
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;" ] |