fixed port listening issue
1 files changed, 2 insertions(+), 2 deletions(-) M Dockerfile
M Dockerfile => Dockerfile +2 -2
@@ 5,6 5,6 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y libcgi-session-perl libhunspell-dev default-jre && rm -rf /var/lib/apt/lists/* RUN pip install -r requirements.txt RUN python -m spacy download en EXPOSE 5000 EXPOSE 5000 # CMD ["python", "games.py"] CMD ["gunicorn", "games:app"] CMD ["gunicorn", "games:app", "--bind", "0.0.0.0:5000"]