ci: refs #6695 Docker & Jenkinsfile fixes/refactor
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
faa8962271
commit
aa0ea0ef68
|
@ -62,6 +62,9 @@ pipeline {
|
|||
}
|
||||
stages {
|
||||
stage('Version') {
|
||||
when {
|
||||
expression { PROTECTED_BRANCH }
|
||||
}
|
||||
steps {
|
||||
script {
|
||||
def packageJson = readJSON file: 'package.json'
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ services:
|
|||
- db
|
||||
front:
|
||||
image: lilium-dev:latest
|
||||
command: quasar dev
|
||||
command: pnpm exec quasar dev
|
||||
volumes:
|
||||
- .:/app
|
||||
working_dir: /app
|
||||
|
|
Loading…
Reference in New Issue