mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Fixed Prisma docker error.
This commit is contained in:
parent
64b4af4bf1
commit
d43293da72
2 changed files with 6 additions and 6 deletions
|
|
@ -36,7 +36,7 @@ RUN addgroup --system --gid 1001 nodejs
|
|||
RUN adduser --system --uid 1001 nextjs
|
||||
|
||||
RUN set -x \
|
||||
&& apk add --no-cache curl \
|
||||
&& apk add --no-cache curl openssl \
|
||||
&& yarn add npm-run-all dotenv semver prisma@5.17.0
|
||||
|
||||
# You only need to copy next.config.js if you are NOT using the default configuration
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
binaryTargets = ["native", "linux-musl-openssl-3.0.x"]
|
||||
}
|
||||
|
||||
datasource db {
|
||||
|
|
@ -112,7 +113,6 @@ model WebsiteEvent {
|
|||
@@index([visitId])
|
||||
@@index([websiteId])
|
||||
@@index([websiteId, createdAt])
|
||||
|
||||
@@index([websiteId, createdAt, urlPath])
|
||||
@@index([websiteId, createdAt, urlQuery])
|
||||
@@index([websiteId, createdAt, referrerDomain])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue