Update gettingstarted.md (#11094)

* Update gettingstarted.md

1. Flask app was running in the wrong port.
2. 5000 port was not exposed in Dockerfile

* Update gettingstarted.md

mistook Redis port to flask port.
This commit is contained in:
Vemuluru Venkata Sri Harsha 2020-07-13 20:36:02 +05:30 committed by GitHub
parent 28210e08d9
commit 39fe7accba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ following:
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["flask", "run"]
This tells Docker to: