Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yegor256/firefox-buildpack
Heroku buildpack for Firefox 68.0.2
https://github.com/yegor256/firefox-buildpack
firefox geckodriver heroku heroku-buildpack selenium
Last synced: 15 days ago
JSON representation
Heroku buildpack for Firefox 68.0.2
- Host: GitHub
- URL: https://github.com/yegor256/firefox-buildpack
- Owner: yegor256
- License: mit
- Created: 2019-09-16T08:04:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:20:25.000Z (11 months ago)
- Last Synced: 2024-08-09T13:15:53.978Z (3 months ago)
- Topics: firefox, geckodriver, heroku, heroku-buildpack, selenium
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Hits-of-Code](https://hitsofcode.com/github/yegor256/firefox-buildpack)](https://hitsofcode.com/view/github/yegor256/firefox-buildpack)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/yegor256/firefox-buildpack/blob/master/LICENSE.txt)This is a [Heroku buildpack](http://devcenter.heroku.com/articles/buildpacks)
with Firefox 68.0.2.To install it, from the command line:
```bash
$ heroku buildpacks:add http://github.com/yegor256/firefox-buildpack
```You may also need [buitron/geckodriver-buildpack](http://github.com/buitron/geckodriver-buildpack)
if you are planning to use Selenium.The binary will be at `/app/vendor/firefox/firefox`.
You will also need to have [`heroku-community/apt`](https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-apt)
buildpack in order
to install all libraries required by Firefox:```bash
$ heroku buildpacks:add heroku-community/apt
```The content of your `Aptfile` should include this line:
```
libcairo2 libcairo-gobject2 libxt6 libsm6 libice6 libgtk-3-0
```Should work.