bachephysicdun commited on
Commit
d6713b3
·
1 Parent(s): 74ec1b0

add uvcorn in app.py. modify Docker accordingly

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -4
  2. app.py +5 -1
Dockerfile CHANGED
@@ -16,10 +16,7 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
  # Again, ensure the copied files are owned by 'user'
17
  COPY --chown=user . /app
18
 
19
- # Set Python path (if necessary)
20
- ENV PYTHONPATH="${PYTHONPATH}:/app"
21
-
22
  # Specify the command to run when the container starts
23
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
24
  # Pass the secret variable to the application
25
  RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
 
16
  # Again, ensure the copied files are owned by 'user'
17
  COPY --chown=user . /app
18
 
 
 
 
19
  # Specify the command to run when the container starts
20
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
21
  # Pass the secret variable to the application
22
  RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
app.py CHANGED
@@ -2,4 +2,8 @@ from fastapi import FastAPI
2
  app = FastAPI()
3
  @app.get("/")
4
  def greet_json():
5
- return {"Hello": "World!"}
 
 
 
 
 
2
  app = FastAPI()
3
  @app.get("/")
4
  def greet_json():
5
+ return {"Hello": "World!"}
6
+
7
+ if __name__ == "__main__":
8
+ import uvicorn
9
+ uvicorn.run("main:app", host="localhost", reload=True, port=8000)