Skip to content

Commit 37ff0bf

Browse files
committed
build: Add curl dependency to Dockerfiles
- Add curl to apt-get install for HTTP client support in ingest plugin - Update all Dockerfiles (azurelinux3.0, debian13, ubuntu20.04, ubuntu22.04, ubuntu24.04) - Required for boost::beast HTTP client functionality This ensures the ingest plugin can make HTTP requests to the external ingest service.
1 parent ac7bbe1 commit 37ff0bf

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

deploy/Dockerfile.azurelinux3.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ COPY --from=builder /usr/local/steemd /usr/local/steemd
170170
WORKDIR /var/steem
171171
VOLUME [ "/var/steem" ]
172172
RUN tdnf update -y && \
173-
tdnf install -y snappy-devel ncurses-compat readline-devel && \
173+
tdnf install -y snappy-devel ncurses-compat readline-devel curl && \
174174
tdnf autoremove -y && \
175175
tdnf clean all
176176

deploy/Dockerfile.debian13

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ COPY --from=builder /usr/local/steemd /usr/local/steemd
137137
WORKDIR /var/steem
138138
VOLUME [ "/var/steem" ]
139139
RUN apt-get update && \
140-
apt-get install -y libsnappy-dev libreadline-dev && \
140+
apt-get install -y libsnappy-dev libreadline-dev curl && \
141141
apt-get autoremove -y && \
142142
rm -rf /var/lib/apt/lists
143143

deploy/Dockerfile.ubuntu20.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ COPY --from=builder /usr/local/steemd /usr/local/steemd
148148
WORKDIR /var/steem
149149
VOLUME [ "/var/steem" ]
150150
RUN apt-get update && \
151-
apt-get install -y libsnappy-dev libreadline-dev && \
151+
apt-get install -y libsnappy-dev libreadline-dev curl && \
152152
apt-get autoremove -y && \
153153
rm -rf /var/lib/apt/lists
154154

deploy/Dockerfile.ubuntu22.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ COPY --from=builder /usr/local/steemd /usr/local/steemd
146146
WORKDIR /var/steem
147147
VOLUME [ "/var/steem" ]
148148
RUN apt-get update && \
149-
apt-get install -y libsnappy-dev libreadline-dev && \
149+
apt-get install -y libsnappy-dev libreadline-dev curl && \
150150
apt-get autoremove -y && \
151151
rm -rf /var/lib/apt/lists
152152

deploy/Dockerfile.ubuntu24.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ COPY --from=builder /usr/local/steemd /usr/local/steemd
137137
WORKDIR /var/steem
138138
VOLUME [ "/var/steem" ]
139139
RUN apt-get update && \
140-
apt-get install -y libsnappy-dev libreadline-dev && \
140+
apt-get install -y libsnappy-dev libreadline-dev curl && \
141141
apt-get autoremove -y && \
142142
rm -rf /var/lib/apt/lists
143143

0 commit comments

Comments
 (0)