forked from open-webui/open-webui
fix: use bash when starting the Dockerfile's entrypoint script (as the script uses BASH_SOURCE that is bash only)
This commit is contained in:
parent
b6d9cf3bc8
commit
c4dd20b087
1 changed files with 1 additions and 1 deletions
|
@ -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"]
|
||||||
|
|
Loading…
Reference in a new issue