From 1049b41cb7194137005d4ce889b445be8293cba1 Mon Sep 17 00:00:00 2001 From: Ruben Jenster Date: Wed, 9 Nov 2022 09:06:46 +0000 Subject: [PATCH] add deprecation notice --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d5f8fe --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# goget + +This project is deprecated. +Please use the static curl binary from instead. +This is the offical download site for static binaries listed on . + +E.g to add the static curl binary in a Dockerfile + +```Dockerfile +ADD https://github.com/moparisthebest/static-curl/releases/download/v7.85.0/curl-amd64 /usr/local/bin/curl +RUN chmod +x /usr/local/bin/curl +```