fix: add libsql to exclusions
This commit is contained in:
parent
7c3db5cd04
commit
0985961d97
3 changed files with 2 additions and 4 deletions
2
.npmrc
2
.npmrc
|
|
@ -1 +1 @@
|
||||||
public-hoist-pattern[]=*@libsql*
|
public-hoist-pattern[]=*libsql*
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,6 @@ COPY --from=builder /app/public ./public
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||||
|
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/data ./data
|
|
||||||
|
|
||||||
USER nextjs
|
USER nextjs
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import type { NextConfig } from "next";
|
||||||
const nextConfig: NextConfig = {
|
const nextConfig: NextConfig = {
|
||||||
output: "standalone",
|
output: "standalone",
|
||||||
outputFileTracingIncludes: {
|
outputFileTracingIncludes: {
|
||||||
"*": ["node_modules/@libsql/**/*"],
|
"*": ["node_modules/@libsql/**/*", "node_modules/libsql/**/*"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue