I am generating a container for my application with the following dockerfile
FROM django
ADD ./cryptoassistant /cryptoassistant
WORKDIR /cryptoassistant
RUN ["chmod", "+x", "/cryptoassistant/manage.py"]
RUN ["pip", "install", "--upgrade", "pip"]
RUN ["pip", "install", "-r", "requirements.txt"]
CMD [ "python", "./manage.py", "runserver"]
When I build the container and execute it, it shows this: It stays here, without doing anything else, the server does not seem upset because I can not access it.
I'm using windows.
Does anyone know why he does not execute the command?
Thank you.