浏览代码

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 files
 COPY ./backend .
 COPY ./backend .
 
 
-CMD [ "sh", "start.sh"]
+CMD [ "bash", "start.sh"]