apify-cli icon indicating copy to clipboard operation
apify-cli copied to clipboard

`oclif pack tarballs` with patched oclif

Open netmilk opened this issue 11 months ago • 0 comments

The end-game is to install $ apify CLI in any Dockerfile with a one-liner:

RUN curl -o- https://raw.githubusercontent.com/apify/apify-cli/latest/install.sh | bash

Installable from https://github.com/netmilk/apify-cli/releases/tag/experimental with:

#!/bin/bash

echo "Installing CLI"
filename="apify-v0.21.0-bab56ce-linux-x64.tar.gz"
url="https://github.com/netmilk/apify-cli/releases/download/experimental/"
file_url="$url$filename"
echo "Downloading: $file_url"
curl -L -O $file_url
tar zxf $filename -C /opt
ln -s /opt/apify/bin/apify /usr/bin/apify
rm $filename

echo "Uname: $(uname -a)"

netmilk avatar Jan 22 '25 10:01 netmilk