fix: docker KO, emoji empty and adding some todos in doc

This commit is contained in:
Julien Froidefond
2025-10-08 08:32:43 +02:00
parent 8bb5495e13
commit 1499394438
3 changed files with 7 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json* ./
RUN \
if [ -f package-lock.json ]; then npm install; \
if [ -f package-lock.json ]; then npm install --legacy-peer-deps; \
else echo "Lockfile not found." && exit 1; \
fi