I am trying to deploy a remix app with vite to fly.io that is using prisma. The error I am getting is
=> ERROR [build 4/8] COPY --link prisma . 0.0s
[build 4/8] COPY --link prisma .:
Error: failed to fetch an image or build from source: error building: failed to solve: failed to compute cache key: “/prisma” not found: not found
not sure where to begin. All I did was create an app with flyctl launch and then run flyctl deploy. My fly.tarml file is
fly.toml app configuration file generated for rss-reader-v3 on 2024-03-19T09:30:19-04:00
See Fly Launch configuration (fly.toml) · Fly Docs for information about how to use this file.
app = ‘rss-reader-v3’
primary_region = ‘iad’
[build]
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = [‘app’]
[[vm]]
memory = ‘1gb’
cpu_kind = ‘shared’
cpus = 1
Can I get some help, not sure where to begin.