Docker – Why does my angular app hosted on nginx throw me an error 502 bad gateway error, but build in the terminal
Yo I've been trying to host an Angular app on NGINX with Docker but when I build the container and go to localhost:8080 I get an 502 Bad Gateway error. This is my Dockerfile: FROM node:latest as build WORKDIR /usr/local/app…