Docker: Update Alpine version

This commit is contained in:
Cohee
2025-06-18 08:40:54 +00:00
parent e657b61df7
commit 1ee3081b5d
+3 -3
View File
@@ -1,4 +1,4 @@
FROM node:lts-alpine3.19
FROM node:lts-alpine3.21
# Arguments
ARG APP_HOME=/home/node/app
@@ -19,7 +19,7 @@ RUN \
echo "*** Install npm packages ***" && \
npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
# Copy default chats, characters and user avatars to <folder>.default folder
# Create config directory and link config.yaml
RUN \
rm -f "config.yaml" || true && \
ln -s "./config/config.yaml" "config.yaml" || true && \
@@ -30,7 +30,7 @@ RUN \
echo "*** Run Webpack ***" && \
node "./docker/build-lib.js"
# Cleanup unnecessary files
# Set the entrypoint script
RUN \
echo "*** Cleanup ***" && \
mv "./docker/docker-entrypoint.sh" "./" && \