You can either serve these files statically (e.g python -m http.server) or use the current DockerFile to distribute these file through docker.
Make sure you have Docker installed on your system.
Run this command in the folder that contains the Dockerfile :
docker build -t showcase .Then start the container and map to a port (e.g. port 8000):
docker run -p 8000:80 showcaseThe demo will be available at: http://localhost:8000