15 lines
329 B
Docker
15 lines
329 B
Docker
# SempliceSemplice build concon nginx alpinealpine
|
|
FROM nginx:alpine
|
|
|
|
# CopiaCopia ii filefile HTMLHTML
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY project-mode.html /usr/share/nginx/html/
|
|
COPY shop-mode.html /usr/share/nginx/html/
|
|
|
|
# Espone porta 80
|
|
# Espone porta 80
|
|
EXPOSE 80
|
|
|
|
# Avvia nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|