Skip to content

Commit

Permalink
Install libcurl 7.83.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Stanton <[email protected]>
  • Loading branch information
ianstanton committed Aug 30, 2024
1 parent 06ec85f commit 8c69c66
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion contrib/pg_net/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ FROM quay.io/coredb/c-builder:pg${PG_VERSION}
USER root

# Install dependencies
RUN apt-get update && apt-get install -y libcurl4-openssl-dev
RUN apt-get update && apt-get install -y wget

# Install libcurl version 7.83.0
RUN wget https://curl.se/download/curl-7.83.0.tar.gz && \
tar -xvf curl-7.83.0.tar.gz && \
cd curl-7.83.0 && \
./configure && \
make && \
make install

ARG RELEASE=v0.10.0

Expand Down

0 comments on commit 8c69c66

Please sign in to comment.