@scandipwa/magento-scripts 2.0.0-alpha.5 → 2.0.0-alpha.6
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/lib/tasks/docker/project-image-builder.js +2 -2
- package/package.json +2 -2
- package/yarn-error.log +0 -9660
|
@@ -68,9 +68,9 @@ const buildDockerFileInstructions = async (ctx, { image, tag }) => {
|
|
|
68
68
|
.comment('project image')
|
|
69
69
|
.from({ image, tag });
|
|
70
70
|
|
|
71
|
-
// install bash in image
|
|
71
|
+
// install bash and patch in image
|
|
72
72
|
dockerFileInstructions
|
|
73
|
-
.run('apk add --no-cache bash');
|
|
73
|
+
.run('apk add --no-cache bash patch');
|
|
74
74
|
|
|
75
75
|
if (missingExtensions.length > 0) {
|
|
76
76
|
const allDependencies = missingExtensions.map(
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Scripts and configuration used by CMA.",
|
|
4
4
|
"homepage": "https://docs.create-magento-app.com/",
|
|
5
5
|
"repository": "github:scandipwa/create-magento-app",
|
|
6
|
-
"version": "2.0.0-alpha.
|
|
6
|
+
"version": "2.0.0-alpha.6",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./typings/index.d.ts",
|
|
9
9
|
"license": "OSL-3.0",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"mysql",
|
|
54
54
|
"scandipwa"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "2912ddf7e826931402dcd6f8bc35799ec1df9c77"
|
|
57
57
|
}
|