Pytho_App added
This commit is contained in:
parent
bdef4b6a4b
commit
47d74aa502
19
Python_App/Dockerfile
Normal file
19
Python_App/Dockerfile
Normal 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
17
Python_App/app.py
Normal 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)
|
7
Python_App/requirements.txt
Normal file
7
Python_App/requirements.txt
Normal 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
|
Loading…
x
Reference in New Issue
Block a user