wip fix
This commit is contained in:
parent
a9fbf2d3ca
commit
9ea7e373d8
|
|
@ -9,6 +9,8 @@ RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
|
|||
RUN apt-get update
|
||||
RUN apt-get install nodejs -yq
|
||||
|
||||
RUN PATH="/usr/lib/node_modules/npm/bin:$PATH"
|
||||
|
||||
COPY dockerzip .
|
||||
RUN unzip -o dockerzip
|
||||
RUN bun install
|
||||
|
|
|
|||
|
|
@ -1,53 +1,60 @@
|
|||
import { $ } from "execa";
|
||||
import fs from "fs";
|
||||
import {
|
||||
copyAsync,
|
||||
dirAsync,
|
||||
existsAsync,
|
||||
removeAsync
|
||||
} from "fs-jetpack";
|
||||
import { copyAsync, dirAsync, existsAsync, removeAsync } from "fs-jetpack";
|
||||
import path from "path";
|
||||
|
||||
const dir = {
|
||||
path(...allpath: any[]) {
|
||||
return path.join(process.cwd(), ...allpath);
|
||||
},
|
||||
read(dirPath: string, baseDir?: string[]): Record<string, string> {
|
||||
const result: Record<string, string> = {};
|
||||
const g = global as any;
|
||||
if (!g.dockerPrepared) {
|
||||
g.dockerPrepared = true;
|
||||
const dir = {
|
||||
path(...allpath: any[]) {
|
||||
return path.join(
|
||||
process.cwd(),
|
||||
...allpath.map((e) => (Array.isArray(e) ? e.join("") : e))
|
||||
);
|
||||
},
|
||||
read(dirPath: string, baseDir?: string[]): Record<string, string> {
|
||||
const result: Record<string, string> = {};
|
||||
|
||||
const contents = fs.readdirSync(dirPath);
|
||||
const contents = fs.readdirSync(dirPath);
|
||||
|
||||
for (const item of contents) {
|
||||
const itemPath = path.join(dirPath, item);
|
||||
const stats = fs.statSync(itemPath);
|
||||
for (const item of contents) {
|
||||
const itemPath = path.join(dirPath, item);
|
||||
const stats = fs.statSync(itemPath);
|
||||
|
||||
if (stats.isFile()) {
|
||||
// const content = fs.readFileSync(itemPath, "utf-8");
|
||||
result[[...(baseDir || []), item].join("/")] = "";
|
||||
} else if (stats.isDirectory()) {
|
||||
if (item !== "node_modules" && item !== ".git") {
|
||||
const subdirResult = dir.read(itemPath, [...(baseDir || []), item]);
|
||||
Object.assign(result, subdirResult);
|
||||
if (stats.isFile()) {
|
||||
// const content = fs.readFileSync(itemPath, "utf-8");
|
||||
result[[...(baseDir || []), item].join("/")] = "";
|
||||
} else if (stats.isDirectory()) {
|
||||
if (item !== "node_modules" && item !== ".git") {
|
||||
const subdirResult = dir.read(itemPath, [...(baseDir || []), item]);
|
||||
Object.assign(result, subdirResult);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
},
|
||||
};
|
||||
|
||||
if (!(await existsAsync(dir.path("_tmp_docker")))) {
|
||||
for (const file of Object.keys(dir.read(dir.path``))) {
|
||||
if (
|
||||
file.startsWith("app/") ||
|
||||
file.startsWith("pkgs/") ||
|
||||
["bun.lockb", "package.json"].includes(file)
|
||||
) {
|
||||
if (file.endsWith("package.json")) {
|
||||
await dirAsync(dir.path("_tmp_docker", path.dirname(file)));
|
||||
await copyAsync(dir.path(file), dir.path("_tmp_docker", file), {
|
||||
overwrite: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
},
|
||||
};
|
||||
|
||||
if (!(await existsAsync(dir.path("_tmp_docker")))) {
|
||||
for (const file of Object.keys(dir.read(dir.path``))) {
|
||||
if (file.endsWith("package.json")) {
|
||||
await dirAsync(dir.path("_tmp_docker", path.dirname(file)));
|
||||
await copyAsync(dir.path(file), dir.path("_tmp_docker", file), {
|
||||
overwrite: true,
|
||||
});
|
||||
}
|
||||
await $({ cwd: dir.path("_tmp_docker") })`zip -r ../docker .`;
|
||||
await $`mv docker.zip dockerzip`;
|
||||
await removeAsync(dir.path("_tmp_docker"));
|
||||
}
|
||||
await copyAsync(dir.path("bun.lockb"), dir.path("_tmp_docker", "bun.lockb"));
|
||||
|
||||
await $({ cwd: dir.path("_tmp_docker") })`zip -r ../docker .`;
|
||||
await $`mv docker.zip dockerzip`;
|
||||
await removeAsync(dir.path("_tmp_docker"));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,12 +59,6 @@ export const createServer = async () => {
|
|||
await scan(dir(`app/srv/api`));
|
||||
await scan(dir(`pkgs/api`));
|
||||
|
||||
g.createServer = (arg) => {
|
||||
return async (site_id: string) => {
|
||||
return arg;
|
||||
};
|
||||
};
|
||||
|
||||
g.server = Bun.serve({
|
||||
port: g.port,
|
||||
maxRequestBodySize: 1024 * 1024 * 128,
|
||||
|
|
@ -131,12 +125,8 @@ export const createServer = async () => {
|
|||
(await existsAsync(dir(`app/web/server/index.js`)))
|
||||
) {
|
||||
const res = require(dir(`app/web/server/index.js`));
|
||||
if (res && res.server) {
|
||||
if (typeof res.server === "function") {
|
||||
g.deploy.server = await res.server();
|
||||
} else {
|
||||
g.deploy.server = res.server;
|
||||
}
|
||||
if (res && typeof res.server === 'object') {
|
||||
g.deploy.server = res.server;
|
||||
}
|
||||
}
|
||||
if (g.deploy.server && g.deploy.index) {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
import mime from "mime";
|
||||
|
||||
|
||||
|
||||
export const serveWeb = async (arg: { pathname: string; content: string }) => {
|
||||
const type = mime.getType(arg.pathname);
|
||||
|
||||
|
|
|
|||
|
|
@ -70,9 +70,6 @@ export const g = global as unknown as {
|
|||
br: Record<string, Uint8Array>;
|
||||
br_timeout: Set<string>;
|
||||
};
|
||||
createServer: (
|
||||
arg: PrasiServer & { api: any; db: any }
|
||||
) => (site_id: string) => Promise<PrasiServer & { api: any; db: any }>;
|
||||
deploy: {
|
||||
init: boolean;
|
||||
raw: any;
|
||||
|
|
|
|||
Loading…
Reference in New Issue