Anwarkh1 commited on
Commit
1e7eb1a
·
verified ·
1 Parent(s): ae4ebd6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,10 +8,10 @@ WORKDIR /app
8
  COPY requirements.txt .
9
 
10
  # Install any dependencies
11
- RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy the content of the local src directory to the working directory
14
  COPY . .
15
 
16
  # Command to run the FastAPI server
17
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5010"]
 
8
  COPY requirements.txt .
9
 
10
  # Install any dependencies
11
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
12
 
13
  # Copy the content of the local src directory to the working directory
14
  COPY . .
15
 
16
  # Command to run the FastAPI server
17
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]