@travetto/pack 5.0.2 → 5.0.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/README.md
CHANGED
|
@@ -267,4 +267,12 @@ echo "" >> $DIST/Dockerfile
|
|
|
267
267
|
echo "USER app" >> $DIST/Dockerfile
|
|
268
268
|
echo "WORKDIR /app" >> $DIST/Dockerfile
|
|
269
269
|
echo "ENTRYPOINT [\"/app/todo-app.sh\"]" >> $DIST/Dockerfile
|
|
270
|
+
|
|
271
|
+
# Building Docker Container latest
|
|
272
|
+
|
|
273
|
+
echo "Building Docker Container latest"
|
|
274
|
+
|
|
275
|
+
cd $DIST
|
|
276
|
+
docker build -t travetto_todo-app:latest .
|
|
277
|
+
cd $ROOT
|
|
270
278
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/pack",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
"description": "Code packing utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"travetto",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"@rollup/plugin-json": "^6.1.0",
|
|
30
30
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
31
31
|
"@rollup/plugin-terser": "^0.4.4",
|
|
32
|
-
"@travetto/runtime": "^5.0.
|
|
33
|
-
"@travetto/terminal": "^5.0.
|
|
32
|
+
"@travetto/runtime": "^5.0.3",
|
|
33
|
+
"@travetto/terminal": "^5.0.3",
|
|
34
34
|
"rollup": "^4.21.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@travetto/cli": "^5.0.
|
|
37
|
+
"@travetto/cli": "^5.0.3"
|
|
38
38
|
},
|
|
39
39
|
"peerDependenciesMeta": {
|
|
40
40
|
"@travetto/cli": {
|
|
@@ -110,10 +110,10 @@ export class PackDockerCommand extends BasePackCommand {
|
|
|
110
110
|
DockerPackOperation.pullDockerBaseImage,
|
|
111
111
|
DockerPackOperation.detectDockerImageOs,
|
|
112
112
|
DockerPackOperation.writeDockerFile,
|
|
113
|
-
...this.dockerStageOnly ? [
|
|
113
|
+
...this.dockerStageOnly ? [] : [
|
|
114
114
|
DockerPackOperation.buildDockerContainer,
|
|
115
115
|
DockerPackOperation.pushDockerContainer
|
|
116
|
-
]
|
|
116
|
+
]
|
|
117
117
|
];
|
|
118
118
|
}
|
|
119
119
|
}
|