myapps_ui/Dockerfile
2026-01-27 13:16:48 +01:00

11 lines
312 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Usa NGINX leggero e sicuro
FROM nginx:alpine
# Copia i file statici nella root di NGINX
COPY public/ /usr/share/nginx/html
# (Opzionale) Config personalizzata NGINX per caching e SPA routing
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
# NGINX parte automaticamente con limmagine ufficiale