We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf1779 commit 29d27edCopy full SHA for 29d27ed
Dockerfile
@@ -36,6 +36,10 @@ LABEL maintainer="unclecode"
36
LABEL description="🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & scraper"
37
LABEL version="1.0"
38
39
+# Install curl and gnupg first (needed to add Redis repo)
40
+RUN apt-get update && apt-get install -y --no-install-recommends curl gnupg \
41
+ && rm -rf /var/lib/apt/lists/*
42
+
43
# Add official Redis repository for security-patched versions
44
RUN curl -fsSL https://packages.redis.io/gpg | gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg \
45
&& echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb bookworm main" \
0 commit comments