소스 검색

fix: use bash when starting the Dockerfile's entrypoint script (as the script uses BASH_SOURCE that is bash only)

Giulio De Pasquale 1 년 전
부모
커밋
c4dd20b087
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

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