We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a2d57 commit 9a94d46Copy full SHA for 9a94d46
2 files changed
mdk-nextjs-demo/.dockerignore
@@ -0,0 +1,9 @@
1
+# Dependencies
2
+node_modules
3
+
4
+# Build output
5
+.next
6
7
+# Dev files
8
+*.log
9
+.DS_Store
mdk-nextjs-demo/Dockerfile
@@ -12,6 +12,12 @@ RUN apk add --no-cache curl libc6-compat jq
12
# Copy package files
13
COPY package.json package-lock.json* ./
14
15
+# Copy local tarball dependencies (created by CI when testing PRs from mdk-checkout)
16
+# These files are always created by the e2e-reusable workflow before building this image.
17
+# The workflow renames the packed tarballs to these exact names (lines 67-68 in e2e-reusable.yml)
18
+COPY moneydevkit-core-local.tgz ./
19
+COPY moneydevkit-nextjs-local.tgz ./
20
21
# Install dependencies
22
RUN npm install
23
0 commit comments