Pytho_App added

This commit is contained in:
Kamal Akhundov 2025-03-12 13:42:37 +01:00
parent bdef4b6a4b
commit 47d74aa502
3 changed files with 43 additions and 0 deletions

19
Python_App/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
# start by pulling the python image
FROM python:3.13-alpine
# copy the requirements file into the image
COPY ./requirements.txt /app/requirements.txt
# switch working directory
WORKDIR /app
# install the dependencies and packages in the requirements file
RUN pip install -r requirements.txt
# copy every content from the local file to the image
COPY . /app
# configure the container to run in an executed manner
ENTRYPOINT [ "python" ]
CMD ["app.py" ]

17
Python_App/app.py Normal file
View File

@ -0,0 +1,17 @@
from flask import Flask
import os
app = Flask(__name__)
@app.route('/')
def index():
return 'Server Works!\n'
@app.route('/greet')
def say_hello():
return 'Hello from Server'
if __name__ == "__main__":
port = int(os.environ.get('PORT', 5000))
app.run(debug=True, host='0.0.0.0', port=port)

View File

@ -0,0 +1,7 @@
blinker==1.7.0
click==8.1.7
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
Werkzeug==3.0.1