Browse Source
Feature/revert permissions on entrypoint.sh in dockerfile (#4007)
* Revert permissions
* Update changelog
pull/4009/head^2
Thomas Kaul
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
Dockerfile
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Set the stack and container names in the `docker-compose` files (`docker-compose.yml`, `docker-compose.build.yml` and `docker-compose.dev.yml`) |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Reverted the permissions (`chmod 0700`) on `entrypoint.sh` in the `Dockerfile` |
|
|
|
|
|
|
|
## 2.120.0 - 2024-10-30 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -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 |
|
|
|