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: 10 months 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:20:25.000Z (over 2 years ago)
- Last Synced: 2025-04-08T17:50:31.359Z (about 1 year ago)
- Topics: firefox, geckodriver, heroku, heroku-buildpack, selenium
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://hitsofcode.com/view/github/yegor256/firefox-buildpack)
[](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.