Runtime: Python 3.0
Build Command
pip install -r requirements.txt && apt --assume-yes install curl && curl -o driver.zip https://storage.googleapis.com/chrome-for-testing-public/126.0.6478.126/linux64/chromedriver-linux64.zip && apt --assume-yes install unzip && unzip driver.zip -d driver && echo 'export PATH=$PATH:$(pwd)/driver/chromedriver-linux64/' >> ~/.bash_profile && source source ~/.bash_profile && chromedriver --version && echo "Done!!"
I'm using the selenium to scrape a website and I want the chromium driver for it to work, but I can't get to install it, because curl is not there, apt-get/apt is not there to install curl.
I know that these build are inside Docker, but can u help me get a way around or find the docker specification for these builds.
That runtime is alpine based so you would need to use apk. besides that, you'll need to make sure whatever is installed in the runtime container
Recommended threads
- fastly error
Hey! I'm hitting a Fastly error on the www version of our site, but the root domain works fine. We have a wildcard set up, so I expected the subdomain to be cov...
- Facebook's scraper facebookexternalhit g...
share.bardbliss.com but works fine on the raw fra.appwrite.run URL. No execution logs appear when Facebook hits the custom domain. This was working before. How ...
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...