Files
test/Dockerfile

9 lines
177 B
Docker

FROM nginx:stable-alpine
COPY index.html /usr/share/nginx/html/index.html
COPY contatti.html /usr/share/nginx/html/contatti.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]