Explorar o código

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

Giulio De Pasquale hai 1 ano
pai
achega
c4dd20b087
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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"]