We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a65c920 + 60c87e3 commit 7aba929Copy full SHA for 7aba929
2 files changed
dashboard/Dockerfile
@@ -30,7 +30,8 @@ ENV NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
30
ENV NEXT_PUBLIC_API_KEY=${NEXT_PUBLIC_API_KEY}
31
32
# Install only production dependencies
33
-COPY package*.json ./
+COPY --from=builder /app/package.json ./package.json
34
+COPY --from=builder /app/package-lock.json ./package-lock.json
35
RUN npm install --omit=dev
36
37
# Copy built assets from builder
render.yaml
@@ -3,7 +3,7 @@ services:
3
name: openmemory
4
env: node
5
rootDir: packages/openmemory-js
6
- buildCommand: npm install && npm run build
+ buildCommand: npm install --include=dev && npm run build
7
startCommand: npm start
8
plan: free
9
autoDeploy: true
0 commit comments