@faable/faable 1.4.2 → 1.4.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.
@@ -12,7 +12,7 @@ const build_node = async (app, workdir) => {
12
12
  app,
13
13
  workdir,
14
14
  template_context: {
15
- from: "node:18.12.0-slim",
15
+ from: "node:18.19.0-slim",
16
16
  },
17
17
  });
18
18
  return { type };
@@ -7,7 +7,7 @@ const upload_tag = async (args) => {
7
7
  const registry = await api.getRegistry(app.id);
8
8
  // Registry login
9
9
  const { user, password, hostname, image } = registry;
10
- await cmd(`echo "${password}" | docker login --username ${user} --password-stdin ${hostname}`);
10
+ await cmd(`echo "${password}" | docker login --username "${user}" --password-stdin ${hostname}`);
11
11
  // Tag image for production
12
12
  const upload_tagname = `${hostname}/${image}`;
13
13
  await cmd(`docker tag ${app.id} ${upload_tagname}`);
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "yaml": "^2.2.2",
15
15
  "yargs": "^17.6.2"
16
16
  },
17
- "version": "1.4.2",
17
+ "version": "1.4.4",
18
18
  "bin": {
19
19
  "faable": "bin/faable.js"
20
20
  },