docs(MEMORY): @pulse-libs/ui — design system compartilhado

This commit is contained in:
Pulse Agent
2026-05-20 20:04:10 -03:00
parent 9d52098b57
commit 0303870669
6 changed files with 204 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
RUN apk add --no-cache curl && \
ln -sf /dev/stdout /usr/share/nginx/html/health
EXPOSE 80
HEALTHCHECK --interval=10s --timeout=3s --retries=3 CMD curl -sf /health || exit 1
CMD ["nginx", "-g", "daemon off;"]