From 128df3184028e371f931169dd99390b5bd6951e1 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Thu, 26 Mar 2026 12:36:52 +0100 Subject: [PATCH] Aggiunta dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e896d42 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx + +# Copia pagine HTML +COPY index.html /usr/share/nginx/html/index.html +COPY simulatore.html /usr/share/nginx/html/simulatore.html +COPY guida.html /usr/share/nginx/html/guida.html + +EXPOSE 80 \ No newline at end of file