bachephysicdun commited on
Commit
df9fc74
·
1 Parent(s): 489f984

minor change

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -14,14 +14,16 @@ COPY --chown=user ./requirements.txt requirements.txt
14
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
  # Copy the rest of the application code from the host to the container
16
  # Again, ensure the copied files are owned by 'user'
17
- COPY --chown=user . /app
 
 
18
 
19
 
20
  # Add a debug command to check file location (remove this once verified)
21
  RUN ls -l /app
22
 
23
  # Specify the command to run when the container starts
24
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
25
  # Pass the secret variable to the application
26
 
27
  RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
 
14
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
  # Copy the rest of the application code from the host to the container
16
  # Again, ensure the copied files are owned by 'user'
17
+ # COPY --chown=user . /app
18
+ COPY --chown=user ./app /app
19
+
20
 
21
 
22
  # Add a debug command to check file location (remove this once verified)
23
  RUN ls -l /app
24
 
25
  # Specify the command to run when the container starts
26
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
27
  # Pass the secret variable to the application
28
 
29
  RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true