소스 검색

🔧 chore(docker): simplify startup command

- remove unnecessary 'cd web' from startup command
- directly run pnpm run start from project root
yourname 1 개월 전
부모
커밋
78585eccef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -28,4 +28,4 @@ pnpm run build
 EXPOSE 8080
 
 # 启动命令
-CMD ["sh", "-c", "cd web && pnpm run start"]
+CMD ["sh", "-c", "pnpm run start"]