yangyang158 commited on
Commit
223e0f7
·
1 Parent(s): dd06e48

Fix: Correct Docker COPY path for Hugging Face build

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -29,7 +29,7 @@ COPY --from=builder /usr/local/bin /usr/local/bin
29
 
30
  # Copy the application code and model files
31
  # Note: The Docker build context should be the parent directory of 'kronos-api-service'
32
- COPY --chown=appuser:appuser ./kronos-api-service/ .
33
 
34
  # Expose the port the app runs on
35
  EXPOSE 7860
 
29
 
30
  # Copy the application code and model files
31
  # Note: The Docker build context should be the parent directory of 'kronos-api-service'
32
+ COPY --chown=appuser:appuser ./ .
33
 
34
  # Expose the port the app runs on
35
  EXPOSE 7860