Compare commits

...

10 commits
v0.0.1 ... main

Author SHA1 Message Date
3673318b75 0.2.9
All checks were successful
ci/woodpecker/tag/build Pipeline was successful
2025-06-27 17:53:58 +02:00
5ec05120ac CI: Improve build 2025-06-27 17:53:43 +02:00
b1e8946e96 0.2.8
Some checks failed
ci/woodpecker/tag/build Pipeline failed
2025-06-27 17:48:06 +02:00
1af2c2c6da Fix Containerfile 2025-06-27 17:48:01 +02:00
b0f410bef0 0.2.7
Some checks failed
ci/woodpecker/tag/build Pipeline failed
2025-06-27 17:46:08 +02:00
e23b71e11c Fix Containerfile 2025-06-27 17:46:03 +02:00
83ef820f44 0.2.6
Some checks failed
ci/woodpecker/tag/build Pipeline failed
2025-06-27 17:43:22 +02:00
81bc7ff07d Use updated Containerfile 2025-06-27 17:43:13 +02:00
4d1a8f00a5 0.2.5
Some checks failed
ci/woodpecker/tag/build Pipeline failed
2025-06-27 17:39:55 +02:00
87877cbcd0 Fix version in package.json 2025-06-27 17:39:46 +02:00
4 changed files with 24 additions and 7 deletions

View file

@ -12,6 +12,8 @@ steps:
ORG: philorg
REGISTRY_TOKEN:
from_secret: registry_token
volumes:
- pnpm:/root/.local/share/pnpm
commands:
- pnpm install --frozen-lockfile
- pnpm set "//code.philo.ydns.eu/api/packages/$ORG/npm/:_authToken=$REGISTRY_TOKEN"

View file

@ -1,5 +1,20 @@
FROM docker.io/nginx:alpine
FROM docker.io/node:alpine as base
COPY ./dist /usr/share/nginx/html/oidc-test-web
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
FROM base as build-stage
WORKDIR /app
COPY pnpm-lock.yaml .
RUN pnpm fetch --prod
COPY . .
RUN pnpm run build
FROM docker.io/library/nginx:alpine as production-stage
RUN mkdir /app
COPY --from=build-stage /app/dist /usr/share/nginx/html/oidc-test-web
CMD ["nginx", "-g", "daemon off;"]

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "typescript",
"version": "0.0.1",
"version": "0.2.9",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "typescript",
"version": "0.0.1",
"version": "0.2.9",
"dependencies": {
"axios": "^1.7.9",
"vue": "3.5.13"

View file

@ -1,14 +1,13 @@
{
"name": "oidc-test-web",
"version": "0.0.1",
"version": "0.2.9",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"version": "echo \"{\\\"version\\\":\\\"$(git describe --tags --dirty --always)\\\"}\" > src/version.json"
"type-check": "vue-tsc --build"
},
"dependencies": {
"@dsb-norge/vue-keycloak-js": "^3.0.1",
@ -27,6 +26,7 @@
"vite-plugin-vue-devtools": "7.7.0",
"vue-tsc": "2.2.0"
},
"packageManager": "pnpm@10.12.1",
"publishConfig": {
"registry": "http://code.philo.ydns.eu/api/packages/philorg/npm/"
}