Update procedure to install Firefox in Node/Standalone Firefox #2550
VietND96
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This update doesn't affect the usual user. This might impact advanced users who rely on official Docker images to customize, build multi-stage, or upgrade the Firefox version by themselves.
Before, via Dockerfile to build Node Firefox, you might see that Firefox is installed by downloaded package
.tar.bz2
, extract to/opt/firefox
and create a symlink/usr/bin/firefox
for the executable.Now, we switch to install Firefox from
deb
package through the APT (following Firefox instruction).For the latest version of Firefox stable, beta, devedition, esr, nightly. We install it through APT repo https://packages.mozilla.org/apt.
For an input version, we download the
deb
package from https://download-installer.cdn.mozilla.net/pub/firefox/releases/ and install it through APT also.The benefit could see
Fixed image tag: 4.27.0-20250101+
Beta Was this translation helpful? Give feedback.
All reactions