@faable/faable 1.3.1 → 1.3.3

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.
@@ -34,6 +34,7 @@ const deploy_command = async (args) => {
34
34
  });
35
35
  // Upload to Faable registry
36
36
  await upload_tag({ app, api, tagname });
37
+ log.info(`🌍 Deployed on https://${app.url}`);
37
38
  };
38
39
 
39
40
  export { deploy_command };
@@ -15,7 +15,6 @@ const upload_tag = async (args) => {
15
15
  // Upload the image to faable registry
16
16
  await cmd("docker", ["push", image_tag]);
17
17
  log.info(`✅ Upload completed.`);
18
- log.info(`🌍 Deployed on ${app.url}`);
19
18
  };
20
19
 
21
20
  export { upload_tag };
package/package.json CHANGED
@@ -26,5 +26,5 @@
26
26
  "access": "public"
27
27
  },
28
28
  "homepage": "https://github.com/faablecloud/faable#readme",
29
- "version": "1.3.1"
29
+ "version": "1.3.3"
30
30
  }
@@ -12,4 +12,7 @@ ENV START_SCRIPT=start
12
12
  # Copy Usercode
13
13
  COPY . .
14
14
 
15
+ # Entrypoint stript
16
+ RUN echo '{{{escape entry_script}}}' >> entrypoint.sh
17
+
15
18
  CMD ["/bin/sh", "./entrypoint.sh"]