8 lines
153 B
Docker
8 lines
153 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy custom nginx config
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Copy static site
|
|
COPY index.html /usr/share/nginx/html/index.html
|