TRMT commited on
Commit
f7264f0
·
1 Parent(s): 861fa85

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -13,7 +13,7 @@ COPY . /my_codes
13
  # Install any needed packages specified in requirements.txt
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
- WORKDIR /app
17
 
18
  # Run app.py when the container launches
19
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
13
  # Install any needed packages specified in requirements.txt
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
+ WORKDIR /my_codes/app
17
 
18
  # Run app.py when the container launches
19
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]