Browse Source
Modify default exposed port (#1681)
* Modify default exposed port
* Update changelog
pull/1676/head^2
BeauAgst
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
Dockerfile
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Set the exposed port as an environment variable (`PORT`) in `Dockerfile` |
|
|
|
- Upgraded `chart.js` from version `4.0.1` to `4.2.0` |
|
|
|
- Upgraded `prettier` from version `2.8.1` to `2.8.4` |
|
|
|
|
|
|
|
|
|
@ -57,5 +57,5 @@ RUN apt update && apt install -y \ |
|
|
|
|
|
|
|
COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps |
|
|
|
WORKDIR /ghostfolio/apps/api |
|
|
|
EXPOSE 3333 |
|
|
|
EXPOSE ${PORT:-3333} |
|
|
|
CMD [ "yarn", "start:prod" ] |
|
|
|