simple-webapp-flask icon indicating copy to clipboard operation
simple-webapp-flask copied to clipboard

Simple Flask based web application

Results 23 simple-webapp-flask issues
Sort by recently updated
recently updated
newest added

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-sxo6KB/flask/ You are using pip version 8.1.1, however version 23.1.2 is available. You should consider upgrading via the 'pip install...

Added the -p 5000:5000 tag initially , as many students in the slack community were facing this issue !

FROM ubuntu:16.04 RUN apt-get update && apt-get install -y **python3 python3-pip** **RUN python3 -m pip install flask** COPY app.py /opt/ ENTRYPOINT FLASK_APP=/opt/app.py flask run --host=0.0.0.0 --port=8080

Docker file needs to be updated. unable to install flask

Requested Werkzeug>=2.0 from https://files.pythonhosted.org/packages/83/3c/ecdb36f49ab06defb0d5a466cfeb4ae90a55d02cfef379f781da2801a45d/Werkzeug-2.0.2.tar.gz#sha256=aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a (from flask), but installing version None Requested itsdangerous>=2.0 from https://files.pythonhosted.org/packages/58/66/d6c5859dcac92b442626427a8c7a42322068c5cd5d4a463ce78b93f730b7/itsdangerous-2.0.1.tar.gz#sha256=9e724d68fc22902a1435351f84c3fb8623f303fffcc566a4cb952df8c572cff0 (from flask), but installing version None Requested itsdangerous>=2.0 from https://files.pythonhosted.org/packages/58/66/d6c5859dcac92b442626427a8c7a42322068c5cd5d4a463ce78b93f730b7/itsdangerous-2.0.1.tar.gz#sha256=9e724d68fc22902a1435351f84c3fb8623f303fffcc566a4cb952df8c572cff0 (from flask), but installing version None

root@829e3edc10af:/opt# FLASK_APP=app.py flask run --host=0.0.0.0 * Serving Flask app 'app.py' (lazy loading) * Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use...

C:\Windows\System32\my-webapp>docker run -p 8080:8080 my-webapp * Serving Flask app 'app.py' (lazy loading) * Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use...

Hi Mumshad, Getting error message , FLASK_APP: not found when i try to execute command docker run -p host port: container port docker image-name Created a docker file using sample...

root@master:~/my-simple-webapp# docker run my-simple-webapp * Serving Flask app 'app.py' (lazy loading) * Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use a...