Spaces:
Sleeping
Sleeping
File size: 368 Bytes
3ac2619 c9bd93b 3ac2619 ca40d49 3ac2619 | 1 2 3 4 5 6 7 8 9 10 11 12 | FROM nginx:1.27-alpine AS runtime
# Serve SPA from port 7860 (Hugging Face Spaces default for Docker apps)
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY dist /usr/share/nginx/html
EXPOSE 7860
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget -q -O /dev/null http://127.0.0.1:7860/ || exit 1
CMD ["nginx", "-g", "daemon off;"]
|