Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Commit

Permalink
Release 20.06.1
Browse files Browse the repository at this point in the history
  • Loading branch information
accetto committed Jun 10, 2020
1 parent e8d1fc9 commit df7d387
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

***

### Release 20.06.1

- Quick mitigation of issue [#7 (Firefox 77.0.1 scrambles pages)](https://github.com/accetto/ubuntu-vnc-xfce-firefox-plus/issues/7)
- by rolling back **Firefox** to version **76.0.1**

### Release 20.06

- Firefox **77.0.1**
Expand Down
18 changes: 15 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,21 @@ FROM accetto/ubuntu-vnc-xfce:${BASETAG} as stage-install
USER 0

### 'apt-get clean' runs automatically
RUN apt-get update && apt-get install -y \
firefox \
&& rm -rf /var/lib/apt/lists/*
# RUN apt-get update && apt-get install -y \
# firefox \
# && rm -rf /var/lib/apt/lists/*

### Mitigating issue #7 (Firefox 77.0.1 scrambles pages) - rollback to version 76.0.1
### Alternatively install an explicit Firefox version
### http://releases.mozilla.org/pub/firefox/releases/67.0.4/linux-x86_64/en-US/firefox-67.0.4.tar.bz2
ENV \
FIREFOX_VERSION=76.0.1 \
FIREFOX_DISTRO=linux-x86_64 \
FIREFOX_PATH=/usr/lib/firefox
RUN mkdir -p ${FIREFOX_PATH} \
&& wget -qO- http://releases.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/${FIREFOX_DISTRO}/en-US/firefox-${FIREFOX_VERSION}.tar.bz2 \
| tar xvj -C /usr/lib/ \
&& ln -s ${FIREFOX_PATH}/firefox /usr/bin/firefox

### Alternatively install an explicit Firefox version
### http://releases.mozilla.org/pub/firefox/releases/67.0.4/linux-x86_64/en-US/firefox-67.0.4.tar.bz2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,6 @@ Credit goes to all the countless people and companies who contribute to open sou

<!-- latest tag badges -->

[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.4-firefox77.0.1/blue
[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.4-firefox76.0.1/blue

[badge-github-commit-latest]: https://images.microbadger.com/badges/commit/accetto/ubuntu-vnc-xfce-firefox-plus.svg
2 changes: 1 addition & 1 deletion hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BASETAG=""
TODAY=$(date +%Y-%m-%d)

### Warning! The values must be explicit strings (used by utils).
VERSION_STICKER_LATEST="ubuntu18.04.4-firefox77.0.1"
VERSION_STICKER_LATEST="ubuntu18.04.4-firefox76.0.1"

VERSION_STICKER="${VERSION_STICKER_LATEST}"

Expand Down

0 comments on commit df7d387

Please sign in to comment.