We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee86464 commit 88cb9e7Copy full SHA for 88cb9e7
prototypes/basic/Dockerfile
@@ -27,7 +27,9 @@ RUN jq 'del(.dependencies["@register-dynamics/importer"])' package.json > /tmp/p
27
RUN mv /tmp/package.json .
28
29
# Explicitly load the latest version
30
-RUN npm install --save "https://gitpkg.vercel.app/register-dynamics/data-import/lib/importer?main"
+# The ADD command stops Docker from caching the subsequent RUN command
31
+ADD "https://gitpkg.vercel.app/register-dynamics/data-import/lib/importer?main" latest.tgz
32
+RUN npm install --save latest.tgz
33
RUN npm install
34
35
# Copy application code
0 commit comments