ci: refs #6695 Docker & Jenkinsfile fixes/refactor
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2025-02-20 16:58:49 +01:00
parent faa8962271
commit aa0ea0ef68
3 changed files with 5 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -62,6 +62,9 @@ pipeline {
}
stages {
stage('Version') {
when {
expression { PROTECTED_BRANCH }
}
steps {
script {
def packageJson = readJSON file: 'package.json'

View File

@ -34,7 +34,7 @@ RUN groupadd -r -g 1000 app \
&& useradd -r -u 1000 -g app -m -d /home/app app
USER app
ENV SHELL bash
ENV SHELL=bash
ENV PNPM_HOME="/home/app/.local/share/pnpm"
ENV PATH="$PNPM_HOME:$PATH"

View File

@ -9,7 +9,7 @@ services:
- db
front:
image: lilium-dev:latest
command: quasar dev
command: pnpm exec quasar dev
volumes:
- .:/app
working_dir: /app