Merge pull request #9 from iFargle/7-container-v022-base_path-issue

7 container v022 base path issue
This commit is contained in:
Albert Copeland
2023-02-11 08:51:06 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@@ -5,7 +5,7 @@ pipeline {
label 'linux-x64'
}
environment {
APP_VERSION = 'v0.2.2'
APP_VERSION = 'v0.2.3'
}
options {
buildDiscarder(logRotator(numToKeepStr: '100', artifactNumToKeepStr: '20'))

View File

@@ -21,7 +21,7 @@ app.logger.setLevel(logging.DEBUG)
# Colors: https://materializecss.com/color.html
COLOR_NAV = "blue-grey darken-1"
COLOR_BTN = "blue-grey darken-3"
BASE_PATH = os.environ["BASE_PATH"]
BASE_PATH = os.environ["BASE_PATH"].replace('"', '')
APP_VERSION = os.environ["APP_VERSION"]
GIT_COMMIT = os.environ["GIT_COMMIT"]
GIT_BRANCH = os.environ["GIT_BRANCH"]