diff options
author | Rob Austein <sra@hactrn.net> | 2020-04-26 18:12:54 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2020-04-26 18:12:54 +0000 |
commit | 3c7e7670a0c9c6e9d1e87e8e2ca23928590679ba (patch) | |
tree | 45cb6d5c8015aa554c871504417f60dbd5c61ac9 | |
parent | 3c0b1a0922339c37b84c5e1c915da7bd2981e514 (diff) | |
parent | f82da62724259969a45f7fa7a8f087c3b2d377c9 (diff) |
Old change which appears to have been tracking a Waterfox version update
-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-56.2.14.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} |