3 lines
87 B
Docker
3 lines
87 B
Docker
FROM nginx:latest
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
COPY . /usr/share/nginx/html
|