diff options
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -26,7 +26,8 @@ RUN apt-get --yes update && apt-get --yes install --no-install-recommends \ RUN set -x; \ tar -C /usr/local -xf /root/waterfox*.tar.bz2 && \ rm -f /root/waterfox*.tar.bz2 && \ - ln -s /usr/local/waterfox/waterfox /usr/local/bin + ln -s /usr/local/waterfox/waterfox /usr/local/bin && \ + ln -s /usr/local/waterfox-classic /usr/local/waterfox RUN set -x; \ mkdir -p /usr/local/java && \ @@ -1,4 +1,4 @@ -URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-classic-2020.01.en-US.linux-x86_64.tar.bz2 +URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-classic-2019.12.en-US.linux-x86_64.tar.bz2 all: wget -N ${URL} |