5 lines
168 B
Docker
5 lines
168 B
Docker
FROM nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
COPY logo.png /usr/share/nginx/html/logo.png
|
|
COPY favicon.svg /usr/share/nginx/html/favicon.svg
|