4 lines
114 B
Docker
4 lines
114 B
Docker
FROM nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
COPY logo.png /usr/share/nginx/html/logo.png
|