Compare commits

...

2 Commits

Author SHA1 Message Date
Nicolai Ort 37c89bedae
chore(deps): Bump to latest vuepress maintainance release
ci/woodpecker/push/build Pipeline was successful Details
2024-02-25 17:19:08 +01:00
Nicolai Ort 8b45d64b45
fix(deps): Back to old node for max compatavility 2024-02-25 17:12:20 +01:00
2 changed files with 4 additions and 4 deletions

View File

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

View File

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