FROM nginx:alpine

COPY index.html /usr/share/nginx/html/

EXPOSE 80

# The default nginx command will start the server
CMD ["nginx", "-g", "daemon off;"]
