Files
apps-registry/workloads/ecommerce/Dockerfile
T
devops 54d2f208ae
Build and Push Frontend / build (push) Successful in 1m57s
feat(ecommerce): release Ari Shopping Frontend v2
2026-07-18 16:34:01 -05:00

6 lines
198 B
Docker

FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY . /usr/share/nginx/html
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://127.0.0.1/healthz || exit 1