The image is still under Debian Jessie.
Etherpad requires a more recent version than Debian Jessie provides. It still works (excepted for some admin features), but would be nice to upgrade anyway to respect recommended versions.
The image is still under Debian Jessie.
Etherpad requires a more recent version than Debian Jessie provides. It still works (excepted for some admin features), but would be nice to upgrade anyway to respect recommended versions.
rDETHER Docker image for Etherpad | |||
D1714 | rDETHER1bf590ab83a9 Upgrade Debian and Node versions |
The following seems to work:
FROM debian:stretch RUN apt-get update && \ apt-get install -y curl unzip mysql-client git sudo python libssl-dev pkg-config build-essential mysql-client && \ curl -sL https://deb.nodesource.com/setup_9.x | bash && \ apt-get install -y nodejs && \ rm -r /var/lib/apt/lists/*
It installs Node from Nodesource, so we can select the version we wish.