Browse Source

fix: explicitly invoke entrypoint.sh with /bin/sh in Dockerfile CMD

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
pull/6456/head
Alan Garber 4 weeks ago
parent
commit
f1d6d60108
  1. 2
      Dockerfile

2
Dockerfile

@ -63,4 +63,4 @@ COPY --chown=node:node ./docker/entrypoint.sh /ghostfolio/
WORKDIR /ghostfolio/apps/api
EXPOSE ${PORT:-3333}
USER node
CMD [ "/ghostfolio/entrypoint.sh" ]
CMD [ "/bin/sh", "/ghostfolio/entrypoint.sh" ]

Loading…
Cancel
Save