5 lines
257 B
Docker
5 lines
257 B
Docker
# Immutable static image for atlas.pogoo.app (product frontend).
|
|
FROM nginx:1.27-alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY . /usr/share/nginx/html
|
|
HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://localhost/ >/dev/null || exit 1
|