소스 검색

Merge pull request #558 from peperunas/patch-1

fix: use bash when starting the Dockerfile's entrypoint script (as th…
Timothy Jaeryang Baek 1 년 전
부모
커밋
b2fae0643e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -53,4 +53,4 @@ COPY --from=build /app/build /app/build
 # copy backend files
 COPY ./backend .
 
-CMD [ "sh", "start.sh" ]
+CMD [ "bash", "start.sh"]