Modify default exposed port (#1681)

* Modify default exposed port

* Update changelog
pull/1676/head^2
BeauAgst 1 year ago committed by GitHub
parent b09d3cea95
commit efed7e3c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save