@hasna/mementos 0.14.48 → 0.14.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile.package +3 -1
- package/package.json +1 -1
package/Dockerfile.package
CHANGED
|
@@ -12,8 +12,10 @@ ENV NODE_ENV=production \
|
|
|
12
12
|
PORT=8080
|
|
13
13
|
|
|
14
14
|
# Production deps only (pg, @hasna/contracts, ai sdk, tesseract.js, ...).
|
|
15
|
+
# --ignore-scripts: the tarball ships prebuilt dist/ (no src/), so the package's
|
|
16
|
+
# own prepare/build lifecycle must not run here.
|
|
15
17
|
COPY package.json bun.lock ./
|
|
16
|
-
RUN bun install --production --frozen-lockfile
|
|
18
|
+
RUN bun install --production --frozen-lockfile --ignore-scripts
|
|
17
19
|
|
|
18
20
|
# Prebuilt bundles shipped in the tarball.
|
|
19
21
|
COPY dist ./dist
|