bachephysicdun commited on
Commit
5cff111
·
1 Parent(s): 55d6d4c

fix the path to main.py in app dir

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -16,6 +16,6 @@ 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
  # Specify the command to run when the container starts
19
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
20
  # Pass the secret variable to the application
21
  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
  # Specify the command to run when the container starts
19
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
20
  # Pass the secret variable to the application
21
  RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true