5 lines
90 B
Docker
5 lines
90 B
Docker
FROM nginx
|
|
|
|
ADD nginx.conf /src/nginx.conf
|
|
|
|
ENTRYPOINT ["nginx", "-c", "/src/nginx.conf"]
|