5 lines
85 B
Docker
5 lines
85 B
Docker
FROM nginx:latest
|
|
|
|
COPY src /usr/share/nginx/html
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |