Feature/Set permission on entrypoint.sh in Dockerfile (#3903)

* Set permission on entrypoint.sh in Dockerfile

* Update changelog
pull/3934/head
JN Brisset 1 week ago committed by GitHub
parent 144e5da753
commit 0403117e8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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)

@ -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

Loading…
Cancel
Save