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