This commit is contained in:
parent
c8d6cc124d
commit
a7250ef323
10 changed files with 44 additions and 16 deletions
24
Dockerfile
24
Dockerfile
|
@ -9,7 +9,10 @@ COPY . .
|
||||||
RUN npm install -g npm@11.2.0
|
RUN npm install -g npm@11.2.0
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
RUN npx tsc -p tsconfig.json
|
#RUN npx tsc -p tsconfig.json
|
||||||
|
RUN npx tsc -p tsconfig.backend.json
|
||||||
|
RUN npx tsc -p tsconfig.frontend.json
|
||||||
|
|
||||||
|
|
||||||
# 2. Rust build-Stage
|
# 2. Rust build-Stage
|
||||||
FROM forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/rust:1.74.0 AS rust-build
|
FROM forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/rust:1.74.0 AS rust-build
|
||||||
|
@ -21,13 +24,22 @@ FROM forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/node:20.18.1
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --from=build /app/dist ./dist
|
COPY --from=build /app/dist ./dist
|
||||||
#COPY --from=build /app/index.html ./dist/iching/
|
#COPY --from=build /app/index.html ./dist/
|
||||||
COPY --from=build /app/index.html ./dist/
|
COPY --from=build /app/frontend/index.html ./dist/frontend/
|
||||||
|
|
||||||
COPY --from=rust-build /usr/local/cargo/bin/iching /usr/local/bin/iching
|
COPY --from=rust-build /usr/local/cargo/bin/iching /usr/local/bin/iching
|
||||||
|
|
||||||
|
|
||||||
|
### NEW ###
|
||||||
|
RUN find dist/backend -name "*.js" -exec bash -c 'mv "$0" "${0%.js}.mjs"' {} \;
|
||||||
|
RUN find dist/frontend -name "*.js" -exec bash -c 'mv "$0" "${0%.js}.cjs"' {} \;
|
||||||
|
|
||||||
|
|
||||||
RUN mkdir -p dist/iching
|
RUN mkdir -p dist/iching
|
||||||
RUN cp dist/*.js dist/iching/
|
#RUN cp dist/*.js dist/iching/
|
||||||
|
|
||||||
RUN node server.js
|
#RUN node dist/iching/server.js
|
||||||
|
RUN node dist/backend/server.mjs &
|
||||||
|
|
||||||
CMD ["npx", "http-server", "dist", "-p", "8080", "--mime", "application/javascript=js"]
|
#CMD ["npx", "http-server", "dist", "-p", "8080", "--mime", "application/javascript=js"]
|
||||||
|
CMD ["npx", "http-server", "dist/frontend", "-p", "8080", "--mime", "application/javascript=js"]
|
|
@ -1,4 +1,4 @@
|
||||||
import { html } from "./broker";
|
/*import { html } from "./broker";
|
||||||
import { test, beforeAll, afterAll } from "@jest/globals";
|
import { test, beforeAll, afterAll } from "@jest/globals";
|
||||||
|
|
||||||
jest.useFakeTimers();
|
jest.useFakeTimers();
|
||||||
|
@ -17,3 +17,4 @@ test("Generate HTML for images", () => {
|
||||||
expect(html("Images:\nOver the earth, the lake:\nThe image of Gathering Together.\nThus the superior man renews his weapons\nIn order to meet the unforseen."))
|
expect(html("Images:\nOver the earth, the lake:\nThe image of Gathering Together.\nThus the superior man renews his weapons\nIn order to meet the unforseen."))
|
||||||
.toBe("<p><h3>Images:</h3>Over the earth, the lake:<br>The image of Gathering Together.<br>Thus the superior man renews his weapons<br>In order to meet the unforseen.<br></p></div>");
|
.toBe("<p><h3>Images:</h3>Over the earth, the lake:<br>The image of Gathering Together.<br>Thus the superior man renews his weapons<br>In order to meet the unforseen.<br></p></div>");
|
||||||
});
|
});
|
||||||
|
*/
|
|
@ -8,7 +8,7 @@
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"type": "commonjs",
|
"type": "module",
|
||||||
"description": "",
|
"description": "",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/express": "^5.0.1",
|
"@types/express": "^5.0.1",
|
||||||
|
|
8
tsconfig.backend.json
Normal file
8
tsconfig.backend.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "./dist/backend",
|
||||||
|
"module": "ESNext"
|
||||||
|
},
|
||||||
|
"include": ["backend/**/*.ts"]
|
||||||
|
}
|
8
tsconfig.frontend.json
Normal file
8
tsconfig.frontend.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "./dist/frontend",
|
||||||
|
"module": "CommonJS"
|
||||||
|
},
|
||||||
|
"include": ["frontend/**/*.ts"]
|
||||||
|
}
|
|
@ -1,10 +1,9 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES6",
|
"target": "es2020",
|
||||||
"module": "ES6",
|
"esModuleInterop": true,
|
||||||
"moduleResolution": "Node",
|
"forceConsistentCasingInFileNames": true,
|
||||||
"outDir": "dist",
|
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"esModuleInterop": true
|
"skipLibCheck": true
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue