@cybermem/dashboard 0.9.2 → 0.9.4
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 +4 -1
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -39,8 +39,11 @@ COPY --from=builder /app/public ./public
|
|
|
39
39
|
COPY --from=builder /app/.next/standalone ./
|
|
40
40
|
COPY --from=builder /app/.next/static ./.next/static
|
|
41
41
|
|
|
42
|
+
# Copy package files for native build support
|
|
43
|
+
COPY package.json pnpm-lock.yaml* ./
|
|
44
|
+
|
|
42
45
|
# Fix sqlite3 bindings by installing it explicitly in the production image
|
|
43
|
-
RUN npm install sqlite3@5.1.7
|
|
46
|
+
RUN npm install sqlite3@5.1.7 --no-save
|
|
44
47
|
|
|
45
48
|
# Expose port
|
|
46
49
|
EXPOSE 3000
|