4 lines
86 B
Docker
4 lines
86 B
Docker
FROM nginx:alpine
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY . /usr/share/nginx/html/
|