diff --git a/CHANGELOG.md b/CHANGELOG.md index 67fecd279..7504bddd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 2.66.1 - 2024-03-23 +## 2.66.2 - 2024-03-23 ### Added diff --git a/Dockerfile b/Dockerfile index 5cc00b389..23634e0b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,9 +61,9 @@ RUN apt update && apt install -y \ ENV TINI_VERSION v0.19.0 ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini RUN chmod +x /tini -ENTRYPOINT ["/tini", "--"] +ENTRYPOINT [ "/tini", "--" ] COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps COPY ./docker/entrypoint.sh /entrypoint.sh EXPOSE ${PORT:-3333} -CMD [ "entrypoint.sh" ] +CMD [ "/entrypoint.sh" ] diff --git a/package.json b/package.json index 6de57b7df..9faa530c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.66.1", + "version": "2.66.2", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio",