hstz commited on
Commit
b1b3d2f
·
verified ·
1 Parent(s): 556085d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -2
Dockerfile CHANGED
@@ -23,5 +23,10 @@ USER root
23
  # 暴露端口
24
  EXPOSE 3000
25
 
26
- # 使用绝对路径启动
27
- CMD ["/app/cursor-api"]
 
 
 
 
 
 
23
  # 暴露端口
24
  EXPOSE 3000
25
 
26
+ # 添加调试信息
27
+ CMD echo "Current directory: $(pwd)" && \
28
+ echo "Listing /app: $(ls -la /app)" && \
29
+ echo "Listing /data: $(ls -la /data)" && \
30
+ echo "Environment variables:" && \
31
+ env && \
32
+ /app/cursor-api