diff --git a/CHANGELOG.md b/CHANGELOG.md index fb6b35224..432380014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Reverted the permissions (`chmod 0700`) on `entrypoint.sh` in the `Dockerfile` - Upgraded the _Stripe_ dependencies ## 2.120.0 - 2024-10-30 diff --git a/Dockerfile b/Dockerfile index 0e5c0d275..e6c38f273 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,6 @@ 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