8 lines
199 B
Docker
8 lines
199 B
Docker
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 |