Docker: Update Alpine version

1ee3081b5d615574fb3efcb87b1eb0915b164596

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -3Ignore whitespace
Dockerfile+3 -3
@@ -1,4 +1,4 @@
1FROM node:lts-alpine3.191FROM node:lts-alpine3.21
22
3# Arguments3# Arguments
4ARG APP_HOME=/home/node/app4ARG APP_HOME=/home/node/app
@@ -19,7 +19,7 @@ RUN \
19 echo "*** Install npm packages ***" && \19 echo "*** Install npm packages ***" && \
20 npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force20 npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
2121
22# Copy default chats, characters and user avatars to <folder>.default folder22# Create config directory and link config.yaml
23RUN \23RUN \
24 rm -f "config.yaml" || true && \24 rm -f "config.yaml" || true && \
25 ln -s "./config/config.yaml" "config.yaml" || true && \25 ln -s "./config/config.yaml" "config.yaml" || true && \
@@ -30,7 +30,7 @@ RUN \
30 echo "*** Run Webpack ***" && \30 echo "*** Run Webpack ***" && \
31 node "./docker/build-lib.js"31 node "./docker/build-lib.js"
3232
33# Cleanup unnecessary files33# Set the entrypoint script
34RUN \34RUN \
35 echo "*** Cleanup ***" && \35 echo "*** Cleanup ***" && \
36 mv "./docker/docker-entrypoint.sh" "./" && \36 mv "./docker/docker-entrypoint.sh" "./" && \