6 lines
111 B
Docker
6 lines
111 B
Docker
|
|
FROM nginx:stable
|
||
|
|
|
||
|
|
COPY ./*.conf /etc/nginx/conf.d
|
||
|
|
COPY . /var/local/web/
|
||
|
|
|
||
|
|
CMD [ "nginx", "-g", "daemon off;" ]
|