10 lines
156 B
Docker
10 lines
156 B
Docker
FROM nginx
|
|
|
|
WORKDIR /server
|
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./html /server/html
|
|
COPY ./index.html /server
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|