From 5a39a122dc3dcaface953c849f85fedc98f977fe Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Wed, 29 Mar 2023 18:23:01 -0400 Subject: [PATCH] curl is no longer a required dependency --- .cicd/platforms/ubuntu20.Dockerfile | 1 - .cicd/platforms/ubuntu22.Dockerfile | 1 - README.md | 2 -- 3 files changed, 4 deletions(-) diff --git a/.cicd/platforms/ubuntu20.Dockerfile b/.cicd/platforms/ubuntu20.Dockerfile index e3fb124499..e30a888c61 100644 --- a/.cicd/platforms/ubuntu20.Dockerfile +++ b/.cicd/platforms/ubuntu20.Dockerfile @@ -3,7 +3,6 @@ FROM ubuntu:focal RUN apt-get update && apt-get upgrade -y && \ DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential \ cmake \ - curl \ git \ jq \ libboost-all-dev \ diff --git a/.cicd/platforms/ubuntu22.Dockerfile b/.cicd/platforms/ubuntu22.Dockerfile index 8b36597e8d..7e4de4cc5c 100644 --- a/.cicd/platforms/ubuntu22.Dockerfile +++ b/.cicd/platforms/ubuntu22.Dockerfile @@ -3,7 +3,6 @@ FROM ubuntu:jammy RUN apt-get update && apt-get upgrade -y && \ DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential \ cmake \ - curl \ git \ jq \ libboost-all-dev \ diff --git a/README.md b/README.md index 1ed8cbab61..212adc0c71 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,6 @@ Requirements to build: - LLVM 7 - 11 - for Linux only - newer versions do not work - openssl 1.1+ -- curl - libcurl 7.40.0+ - git - GMP @@ -132,7 +131,6 @@ sudo apt-get update sudo apt-get install -y \ build-essential \ cmake \ - curl \ git \ libboost-all-dev \ libcurl4-openssl-dev \