6 lines
345 B
Docker
6 lines
345 B
Docker
# Immutable static image for pogoo.app (main house site).
|
|
FROM nginx:1.27-alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY . /usr/share/nginx/html
|
|
# atlas/ lives here in the repo but is served on its own subdomain image; harmless if present.
|
|
HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://localhost/ >/dev/null || exit 1
|