7 lines
137 B
Docker
7 lines
137 B
Docker
FROM nginx:latest
|
|
|
|
COPY ./public /usr/share/nginx/html
|
|
|
|
COPY site.conf /etc/nginx/conf.d/default.conf
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |