Selaa lähdekoodia

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

Giulio De Pasquale 1 vuosi sitten
vanhempi
commit
c4dd20b087
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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"]