4 lines
111 B
Docker
4 lines
111 B
Docker
FROM docker.io/nginx:latest
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY static/ /usr/share/nginx/html/
|