From 0403117e8cbf4e6665344ec5d591a7dee4403d0c Mon Sep 17 00:00:00 2001 From: JN Brisset Date: Tue, 15 Oct 2024 12:50:33 -0600 Subject: [PATCH] Feature/Set permission on entrypoint.sh in Dockerfile (#3903) * Set permission on entrypoint.sh in Dockerfile * Update changelog --- CHANGELOG.md | 4 ++++ Dockerfile | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9ea9ad93..23fcb46de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Set the permissions (`chmod 0700`) on `entrypoint.sh` in the `Dockerfile` + ### Changed - Disabled the text hover effect in the chart of the holdings tab on the home page (experimental) diff --git a/Dockerfile b/Dockerfile index e6c38f273..0e5c0d275 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,6 +61,7 @@ RUN apt-get update && apt-get install -y --no-install-suggests \ COPY --chown=node:node --from=builder /ghostfolio/dist/apps /ghostfolio/apps COPY --chown=node:node ./docker/entrypoint.sh /ghostfolio/entrypoint.sh +RUN chmod 0700 /ghostfolio/entrypoint.sh WORKDIR /ghostfolio/apps/api EXPOSE ${PORT:-3333} USER node