| | FROM node:lts-alpine3.19
|
| |
|
| |
|
| | ARG APP_HOME=/home/node/app
|
| | ARG PLUGINS=""
|
| |
|
| |
|
| |
|
| |
|
| |
|
| | RUN apk add --no-cache gcompat tini git unzip wget
|
| |
|
| |
|
| | WORKDIR ${APP_HOME}
|
| |
|
| |
|
| | ENV NODE_ENV=production
|
| |
|
| |
|
| | RUN \
|
| | echo "*** Cloning SillyTavern Core from GitHub (staging branch) ***" && \
|
| |
|
| | git clone -b staging --depth 1 https://github.com/SillyTavern/SillyTavern.git . && \
|
| | echo "*** Cloning complete. ***"
|
| |
|
| |
|
| |
|
| | RUN \
|
| | echo "*** Attempting to remove root .gitignore if it exists ***" && \
|
| | rm -f .gitignore && \
|
| | echo "*** Root .gitignore removed (if it existed). ***"
|
| |
|
| |
|
| |
|
| | RUN \
|
| | echo "*** Install Base npm packages ***" && \
|
| | if [ -f package.json ]; then \
|
| |
|
| | npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev --force && npm cache clean --force; \
|
| | else \
|
| | echo "No package.json found in root, skipping base npm install."; \
|
| | fi
|
| |
|
| |
|
| | WORKDIR ${APP_HOME}
|
| |
|
| |
|
| | RUN mkdir -p config
|
| |
|
| |
|
| | RUN \
|
| | echo "*** Run Webpack ***" && \
|
| |
|
| | if [ -f "./docker/build-lib.js" ]; then \
|
| | node "./docker/build-lib.js"; \
|
| | elif [ -f "./build-lib.js" ]; then \
|
| | node "./build-lib.js"; \
|
| | else \
|
| | echo "build-lib.js not found, skipping Webpack build."; \
|
| | fi
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| | RUN git config --global --add safe.directory "${APP_HOME}"
|
| |
|
| |
|
| | RUN chown -R node:node ${APP_HOME}
|
| |
|
| | EXPOSE 8000
|
| |
|
| |
|
| | ENTRYPOINT ["tini", "--", "sh", "-c", " \
|
| |
|
| | echo '--- Attempting to update SillyTavern Core from GitHub (staging branch) ---'; \
|
| | if [ -d \".git\" ] && [ \"$(git rev-parse --abbrev-ref HEAD)\" = \"staging\" ]; then \
|
| | echo 'Existing staging branch found. Resetting and pulling latest changes...'; \
|
| | git reset --hard HEAD && \
|
| | git pull origin staging || echo 'WARN: git pull failed, continuing with code from build time.'; \
|
| | echo '--- SillyTavern Core update check finished. ---'; \
|
| | else \
|
| | echo 'WARN: .git directory not found or not on staging branch. Skipping runtime update. Code from build time will be used.'; \
|
| | fi; \
|
| | # --- END: Update SillyTavern Core at Runtime --- \
|
| |
|
| | echo '--- Checking for CONFIG_YAML environment variable ---'; \
|
| | # Ensure the CWD has correct permissions for writing config.yaml
|
| | # mkdir -p ./config && chown node:node ./config; # Removed mkdir
|
| | if [ -n \"$CONFIG_YAML\" ]; then \
|
| | echo 'Environment variable CONFIG_YAML found. Writing to ./config.yaml (root directory)...'; \
|
| | # Write directly to ./config.yaml in the CWD
|
| | printf '%s\n' \"$CONFIG_YAML\" > ./config.yaml && \
|
| | chown node:node ./config.yaml && \
|
| | echo 'Config written to ./config.yaml and permissions set successfully.'; \
|
| | # --- BEGIN DEBUG: Print the written config file ---
|
| | echo '--- Verifying written ./config.yaml ---'; \
|
| | cat ./config.yaml; \
|
| | echo '--- End of ./config.yaml ---'; \
|
| | # --- END DEBUG ---
|
| | else \
|
| | echo 'Warning: Environment variable CONFIG_YAML is not set or empty. Attempting to copy default config...'; \
|
| | # Copy default if ENV VAR is missing and the example exists
|
| | if [ -f \"./public/config.yaml.example\" ]; then \
|
| | # Copy default to ./config.yaml in the CWD
|
| | cp \"./public/config.yaml.example\" \"./config.yaml\" && \
|
| | chown node:node ./config.yaml && \
|
| | echo 'Copied default config to ./config.yaml'; \
|
| | else \
|
| | echo 'Warning: Default config ./public/config.yaml.example not found.'; \
|
| | fi; \
|
| | fi; \
|
| |
|
| | # --- BEGIN: Configure Git default identity at Runtime --- \
|
| | echo '--- Configuring Git default user identity at runtime ---'; \
|
| | git config --global user.name \"SillyTavern Sync\" && \
|
| | git config --global user.email \"sillytavern-sync@example.com\"; \
|
| | echo '--- Git identity configured for runtime user. ---'; \
|
| | # --- END: Configure Git default identity at Runtime --- \
|
| |
|
| | # --- BEGIN: Dynamically Install Plugins at Runtime --- \
|
| | echo '--- Checking for PLUGINS environment variable ---'; \
|
| | if [ -n \"$PLUGINS\" ]; then \
|
| | echo \"*** Installing Plugins specified in PLUGINS environment variable: $PLUGINS ***\" && \
|
| | # Ensure plugins directory exists
|
| | mkdir -p ./plugins && chown node:node ./plugins && \
|
| | # Set comma as delimiter
|
| | IFS=',' && \
|
| | # Loop through each plugin URL
|
| | for plugin_url in $PLUGINS; do \
|
| | # Trim leading/trailing whitespace
|
| | plugin_url=$(echo \"$plugin_url\" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') && \
|
| | if [ -z \"$plugin_url\" ]; then continue; fi && \
|
| | # Extract plugin name
|
| | plugin_name_git=$(basename \"$plugin_url\") && \
|
| | plugin_name=${plugin_name_git%.git} && \
|
| | plugin_dir=\"./plugins/$plugin_name\" && \
|
| | echo \"--- Installing plugin: $plugin_name from $plugin_url into $plugin_dir ---\" && \
|
| | # Remove existing dir if it exists
|
| | rm -rf \"$plugin_dir\" && \
|
| | # Clone the plugin (run as root, fix perms later)
|
| | git clone --depth 1 \"$plugin_url\" \"$plugin_dir\" && \
|
| | if [ -f \"$plugin_dir/package.json\" ]; then \
|
| | echo \"--- Installing dependencies for $plugin_name ---\" && \
|
| | (cd \"$plugin_dir\" && npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev --force && npm cache clean --force) || echo \"WARN: Failed to install dependencies for $plugin_name\"; \
|
| | else \
|
| | echo \"--- No package.json found for $plugin_name, skipping dependency install. ---\"; \
|
| | fi || echo \"WARN: Failed to clone $plugin_name from $plugin_url, skipping...\"; \
|
| | done && \
|
| | # Reset IFS
|
| | unset IFS && \
|
| | # Fix permissions for plugins directory after installation
|
| | echo \"--- Setting permissions for plugins directory ---\" && \
|
| | chown -R node:node ./plugins && \
|
| | echo \"*** Plugin installation finished. ***\"; \
|
| | else \
|
| | echo 'PLUGINS environment variable is not set or empty, skipping runtime plugin installation.'; \
|
| | fi; \
|
| | # --- END: Dynamically Install Plugins at Runtime --- \
|
| |
|
| | echo 'Starting SillyTavern server directly...'; \
|
| |
|
| | # --- BEGIN: Cleanup before start --- \
|
| | # Remove .gitignore
|
| | echo 'Attempting final removal of .gitignore...' && \
|
| | rm -f .gitignore && \
|
| | if [ ! -e .gitignore ]; then \
|
| | echo '.gitignore successfully removed.'; \
|
| | else \
|
| | # This case is unlikely with rm -f unless permissions prevent removal
|
| | echo 'WARN: .gitignore could not be removed or reappeared.'; \
|
| | fi; \
|
| | # Remove .git directory
|
| | echo 'Attempting final removal of .git directory...' && \
|
| | rm -rf .git && \
|
| | if [ ! -d .git ]; then \
|
| | echo '.git directory successfully removed.'; \
|
| | else \
|
| | # This case usually indicates a permission issue
|
| | echo 'WARN: .git directory could not be removed.'; \
|
| | fi; \
|
| | # --- END: Cleanup before start --- \
|
| |
|
| | # Execute node server directly, bypassing docker-entrypoint.sh
|
| | exec node server.js; \
|
| | "] |