fix: cleanupStuckedContainers
This commit is contained in:
77
apps/trpc-experimental/server/build/lib/buildPacks/static.js
Normal file
77
apps/trpc-experimental/server/build/lib/buildPacks/static.js
Normal file
@@ -0,0 +1,77 @@
|
||||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
var static_exports = {};
|
||||
__export(static_exports, {
|
||||
default: () => static_default
|
||||
});
|
||||
module.exports = __toCommonJS(static_exports);
|
||||
var import_fs = require("fs");
|
||||
var import_common = require("../common");
|
||||
var import_common2 = require("./common");
|
||||
const createDockerfile = async (data, image) => {
|
||||
const {
|
||||
applicationId,
|
||||
tag,
|
||||
workdir,
|
||||
buildCommand,
|
||||
baseDirectory,
|
||||
publishDirectory,
|
||||
secrets,
|
||||
pullmergeRequestId,
|
||||
baseImage,
|
||||
buildId,
|
||||
port
|
||||
} = data;
|
||||
const Dockerfile = [];
|
||||
Dockerfile.push(`FROM ${image}`);
|
||||
if (baseImage?.includes("httpd")) {
|
||||
Dockerfile.push("WORKDIR /usr/local/apache2/htdocs/");
|
||||
} else {
|
||||
Dockerfile.push("WORKDIR /app");
|
||||
}
|
||||
Dockerfile.push(`LABEL coolify.buildId=${buildId}`);
|
||||
if (secrets.length > 0) {
|
||||
(0, import_common.generateSecrets)(secrets, pullmergeRequestId, true).forEach((env) => {
|
||||
Dockerfile.push(env);
|
||||
});
|
||||
}
|
||||
if (buildCommand) {
|
||||
Dockerfile.push(`COPY --from=${applicationId}:${tag}-cache /app/${publishDirectory} ./`);
|
||||
} else {
|
||||
Dockerfile.push(`COPY .${baseDirectory || ""} ./`);
|
||||
}
|
||||
if (baseImage?.includes("nginx")) {
|
||||
Dockerfile.push(`COPY /nginx.conf /etc/nginx/nginx.conf`);
|
||||
}
|
||||
Dockerfile.push(`EXPOSE ${port}`);
|
||||
await import_fs.promises.writeFile(`${workdir}/Dockerfile`, Dockerfile.join("\n"));
|
||||
};
|
||||
async function static_default(data) {
|
||||
try {
|
||||
const { baseImage, baseBuildImage } = data;
|
||||
if (data.buildCommand)
|
||||
await (0, import_common2.buildCacheImageWithNode)(data, baseBuildImage);
|
||||
await createDockerfile(data, baseImage);
|
||||
await (0, import_common2.buildImage)(data);
|
||||
} catch (error) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
// Annotate the CommonJS export names for ESM import in node:
|
||||
0 && (module.exports = {});
|
||||
Reference in New Issue
Block a user