5 lines
143 B
Docker
5 lines
143 B
Docker
FROM nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY favico.ico /usr/share/nginx/html/
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|