10 lines
286 B
Docker
10 lines
286 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY index.html style.css script.js /usr/share/nginx/html/
|
|
COPY .well-known /usr/share/nginx/html/.well-known
|
|
|
|
EXPOSE 80
|
|
|
|
HEALTHCHECK --interval=30s --timeout=3s \
|
|
CMD wget -q --spider http://127.0.0.1/ || exit 1
|