@toa.io/operations 1.0.0-alpha.73 → 1.0.0-alpha.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/operations",
3
- "version": "1.0.0-alpha.73",
3
+ "version": "1.0.0-alpha.74",
4
4
  "description": "Toa Deployment",
5
5
  "homepage": "https://toa.io",
6
6
  "author": {
@@ -34,5 +34,5 @@
34
34
  "execa": "5.1.1",
35
35
  "fs-extra": "11.1.1"
36
36
  },
37
- "gitHead": "3c7d415c68324aae8f1524b2ae06b02eb5832c54"
37
+ "gitHead": "198cb9bc1ad86b66aebada8f0ac205e25b236a14"
38
38
  }
@@ -16,4 +16,4 @@ COPY --chown=node:node . /composition
16
16
  RUN for entry in *; do if [ -f "$entry/package.json" ]; then (cd $entry && npm i --omit=dev); fi; done
17
17
 
18
18
  USER node
19
- CMD ["toa", "compose", "*"]
19
+ CMD toa compose *
@@ -11,4 +11,4 @@ COPY --chown=node:node . /service
11
11
  RUN npm i --omit=dev
12
12
 
13
13
  USER node
14
- CMD ["toa", "serve", "."]
14
+ CMD toa serve .