Browse Source
Feature/Set permission on entrypoint.sh in Dockerfile (#3903)
* Set permission on entrypoint.sh in Dockerfile
* Update changelog
pull/3934/head
JN Brisset
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
Dockerfile
|
|
@ -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 |
|
|
|