Browse Source
Merge branch 'main' into feature/improve-sackgeld.com-blog-post
pull/1628/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
9 additions and
4 deletions
-
.github/workflows/build-code.yml
-
.nvmrc
-
CHANGELOG.md
-
Dockerfile
-
README.md
|
|
@ -10,7 +10,7 @@ jobs: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
node_version: |
|
|
|
- 16 |
|
|
|
- 18 |
|
|
|
steps: |
|
|
|
- name: Checkout code |
|
|
|
uses: actions/checkout@v3 |
|
|
|
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added a quote to the blog post _Ghostfolio auf Sackgeld.com vorgestellt_ |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Upgraded `Node.js` from version `16` to `18` (`Dockerfile`) |
|
|
|
|
|
|
|
## 1.229.0 - 2023-01-21 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
|
FROM --platform=$BUILDPLATFORM node:16-slim as builder |
|
|
|
FROM --platform=$BUILDPLATFORM node:18-slim as builder |
|
|
|
|
|
|
|
# Build application and add additional files |
|
|
|
WORKDIR /ghostfolio |
|
|
@ -50,7 +50,7 @@ COPY package.json /ghostfolio/dist/apps/api |
|
|
|
RUN yarn database:generate-typings |
|
|
|
|
|
|
|
# Image to run, copy everything needed from builder |
|
|
|
FROM node:16-slim |
|
|
|
FROM node:18-slim |
|
|
|
RUN apt update && apt install -y \ |
|
|
|
openssl \ |
|
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
@ -148,7 +148,7 @@ Please follow the instructions of the Ghostfolio [Unraid Community App](https:// |
|
|
|
### Prerequisites |
|
|
|
|
|
|
|
- [Docker](https://www.docker.com/products/docker-desktop) |
|
|
|
- [Node.js](https://nodejs.org/en/download) (version 16+) |
|
|
|
- [Node.js](https://nodejs.org/en/download) (version 16) |
|
|
|
- [Yarn](https://yarnpkg.com/en/docs/install) |
|
|
|
- A local copy of this Git repository (clone) |
|
|
|
|
|
|
|