Compare commits

..

No commits in common. "37c89bedae98d628c50a0f929f2f1e88fd1cf12f" and "40e779ff8f83b3f8d65c20ca86ddc1d438886a78" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM registry.odit.services/hub/library/node:16-alpine3.16 AS build FROM registry.odit.services/hub/library/node:18.10.0-alpine3.16 AS build
ARG NPM_REGISTRY_URL=https://registry.npmjs.org ARG NPM_REGISTRY_URL=https://registry.npmjs.org
WORKDIR /app WORKDIR /app
@ -9,6 +9,6 @@ COPY . ./
RUN pnpm build RUN pnpm build
# final image # final image
FROM registry.odit.services/library/nginx-brotli:latest FROM registry.odit.services/library/nginx-brotli:3.15.130
COPY --from=build /app/src/.vuepress/dist /usr/share/nginx/html COPY --from=build /app/src/.vuepress/dist /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf COPY ./nginx.conf /etc/nginx/nginx.conf

View File

@ -32,13 +32,13 @@
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"devDependencies": { "devDependencies": {
"@odit/license-exporter": "0.0.12", "@odit/license-exporter": "0.0.12",
"vuepress": "1.9.9" "vuepress": "1.9.7"
}, },
"dependencies": { "dependencies": {
"vuepress-plugin-flexsearch": "0.3.0", "vuepress-plugin-flexsearch": "0.3.0",
"vuepress-theme-default-prefers-color-scheme": "2.0.0" "vuepress-theme-default-prefers-color-scheme": "2.0.0"
}, },
"volta": { "volta": {
"node": "16.15.1" "node": "18.10.0"
} }
} }