Global Cube 2 年之前
當前提交
99e9aa73fe
共有 9 個文件被更改,包括 60 次插入0 次删除
  1. 2 0
      .gitignore
  2. 10 0
      Dockerfile
  3. 3 0
      app/__init__.py
  4. 14 0
      app/templates/home.html
  5. 12 0
      app/views.py
  6. 10 0
      docker-compose.yml
  7. 2 0
      main.py
  8. 1 0
      requirements.txt
  9. 6 0
      uwsgi.ini

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+__pycache__
+supervisord.pid

+ 10 - 0
Dockerfile

@@ -0,0 +1,10 @@
+FROM tiangolo/uwsgi-nginx-flask:python3.8-alpine
+
+RUN apk --update add bash nano
+
+ENV STATIC_URL /static
+ENV STATIC_PATH /var/www/app/static
+
+COPY ./requirements.txt /var/www/requirements.txt
+
+RUN pip install -r /var/www/requirements.txt

+ 3 - 0
app/__init__.py

@@ -0,0 +1,3 @@
+from flask import Flask
+app = Flask(__name__)
+from app import views

+ 14 - 0
app/templates/home.html

@@ -0,0 +1,14 @@
+<!doctype html>
+
+<html lang="en-us">   
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="x-ua-compatible" content="ie=edge">
+    <title>Welcome home</title>
+  </head>
+  
+  <body>
+    <h1>Home Page</h1>
+    <p>This is the home page of our application.</p>
+  </body> 
+</html>

+ 12 - 0
app/views.py

@@ -0,0 +1,12 @@
+from flask import render_template
+from app import app
+
+
+@app.route('/')
+def home():
+   return 'hello world!!'
+
+
+@app.route('/template')
+def template():
+    return render_template('home.html')

+ 10 - 0
docker-compose.yml

@@ -0,0 +1,10 @@
+version: "3"
+services:
+  flask-default:
+    build: .
+    container_name: flask-default
+    privileged: true
+    ports:
+      - "8088:80"
+    volumes:
+      - ./:/app

+ 2 - 0
main.py

@@ -0,0 +1,2 @@
+from app import app
+

+ 1 - 0
requirements.txt

@@ -0,0 +1 @@
+Flask>=2.2.0

+ 6 - 0
uwsgi.ini

@@ -0,0 +1,6 @@
+[uwsgi]
+module = main
+callable = app
+master = true
+touch-reload = /app/uwsgi.ini
+