Skip to content

Commit 29d27ed

Browse files
committed
fix: install curl and gnupg in Dockerfile to support Redis repository addition
1 parent 4bf1779 commit 29d27ed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ LABEL maintainer="unclecode"
3636
LABEL description="🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & scraper"
3737
LABEL version="1.0"
3838

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+
3943
# Add official Redis repository for security-patched versions
4044
RUN curl -fsSL https://packages.redis.io/gpg | gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg \
4145
&& echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb bookworm main" \

0 commit comments

Comments
 (0)