- Install docker.
- Go to the directory where Dockerfile is
docker build -t ge_site:1.0 .
(don't forget the dot)- docker run --name ge_site -d -p 80:8000 ge_site:1.0
Done! Go to localhost:80 or just localhost to see the app
kubectl apply -f api.yaml
If working locally,use port forwarding to expose the service
kubectl port-forward service/ge-site-svc 8080