We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd5d60d commit 71da19dCopy full SHA for 71da19d
deploy/lib/buildAndPushContainers.js
@@ -68,6 +68,9 @@ module.exports = {
68
const containerNames = Object.keys(this.containers);
69
const promises = containerNames.map((containerName) => {
70
const container = this.containers[containerName];
71
+ if (container["directory"] === undefined) {
72
+ return;
73
+ }
74
const tarStream = tar.pack(`./${container.directory}`);
75
const imageName = `${this.namespace.registry_endpoint}/${container.name}:latest`;
76
0 commit comments