Browse Source
Support arm64 (#465 )
* Support arm64
* Move prisma from devDependencies to dependencies (Fix "/bin/sh: prisma: not found" in docker build)
* Update changelog
Co-authored-by: Valentin Zickner <ghostfolio@zickner.ch>
pull/536/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
2 deletions
CHANGELOG.md
Dockerfile
package.json
@ -5,6 +5,13 @@ 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/ ),
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 ).
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## Unreleasd
### Fixed
- Fixed `/bin/sh: prisma: not found` in docker build
- Added `apk` in `Dockerfile` (`python3 g++ make openssl`)
## 1.89.0 - 11.12.2021
## 1.89.0 - 11.12.2021
### Added
### Added
@ -12,7 +12,8 @@ COPY ./package.json package.json
COPY ./yarn.lock yarn.lock
COPY ./yarn.lock yarn.lock
COPY ./prisma/schema.prisma prisma/schema.prisma
COPY ./prisma/schema.prisma prisma/schema.prisma
RUN yarn
RUN apk add --no-cache python3 g++ make openssl
RUN yarn install
# See https://github.com/nrwl/nx/issues/6586 for further details
# See https://github.com/nrwl/nx/issues/6586 for further details
COPY ./decorate-angular-cli.js decorate-angular-cli.js
COPY ./decorate-angular-cli.js decorate-angular-cli.js
@ -105,6 +105,7 @@
"passport" : "0.4.1" ,
"passport" : "0.4.1" ,
"passport-google-oauth20" : "2.0.0" ,
"passport-google-oauth20" : "2.0.0" ,
"passport-jwt" : "4.0.0" ,
"passport-jwt" : "4.0.0" ,
"prisma" : "3.6.0" ,
"reflect-metadata" : "0.1.13" ,
"reflect-metadata" : "0.1.13" ,
"round-to" : "5.0.0" ,
"round-to" : "5.0.0" ,
"rxjs" : "7.4.0" ,
"rxjs" : "7.4.0" ,
@ -161,7 +162,6 @@
"jest" : "27.2.3" ,
"jest" : "27.2.3" ,
"jest-preset-angular" : "11.0.0" ,
"jest-preset-angular" : "11.0.0" ,
"prettier" : "2.3.2" ,
"prettier" : "2.3.2" ,
"prisma" : "3.6.0" ,
"replace-in-file" : "6.2.0" ,
"replace-in-file" : "6.2.0" ,
"rimraf" : "3.0.2" ,
"rimraf" : "3.0.2" ,
"ts-jest" : "27.0.5" ,
"ts-jest" : "27.0.5" ,