My frontend (REACTJS) doesn't connect with backend(FLASK PYTHON) in docker
I'm trying to dockerize my app. It have an API architecture without using nginx. I'm using this dockerfile for the flask app FROM python:3.9.0 WORKDIR /ProyectoTitulo ENV FLASK_APP = app.py ENV FLASK_ENV = development COPY ./requirements.txt . RUN pip install…