v1.1.0 #7

Merged
last2014 merged 17 commits from develop into main 2025-12-18 14:27:13 +00:00
2 changed files with 5 additions and 4 deletions
Showing only changes of commit 3af5b5f87c - Show all commits
+3
View File
@@ -17,6 +17,9 @@ RUN rm -rf /var/lib/apt/lists/*
# Copy source
COPY ./src ./
# Install dependencies
RUN npm ci --unsafe-perm
# Init replied_ids.json
RUN echo "[]" > replied_ids.json
+2 -4
View File
@@ -8,11 +8,9 @@ if [ -z "$UWUZU_HOST" ] || [ -z "$UWUZU_TOKEN" ] ||
exit 1
fi
# Install dependencies
npm ci --unsafe-perm
# Change line break
find /app -type f -exec sed -i 's/\r$//' {} \;
find /app -type d -name "node_modules" -prune -o \
-type f -name "*.js" -exec sed -i 's/\r$//' {} \;
# Copy default memory
if [ ! -s /app/memory.db ]; then \