I have an angular application in a container and want to make it call my API that is in my docker host. I want to do it so I could debug my API and make some tests.
This is my dockerfile:
FROM node:6.9.5-alpine
COPY . .
RUN npm install
CMD ["npm", "start"]
How can I make it call my API that is in my docker host using a HTTP request?