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
- Helping in unblock my account
I deleted my Appwrite Cloud account that was linked via GitHub. Now I activated my GitHub Student Pack and want to sign up again using the same GitHub account, ...
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...
- Request for temporary 3 to 4 hours datab...
Hi Appwrite Team, I hope you are doing well.We are an early-stage startup currently running on Appwrite Cloud. We have unfortunately exhausted our database rea...