Skip to content

Commit 7d9b281

Browse files
authored
Merge pull request #11 from manics/turbovnc-226
Update TurboVNC to 2.2.6
2 parents f4061a6 + f86bd5b commit 7d9b281

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ RUN apt-get -y update \
1414
xubuntu-icon-theme
1515

1616
# Remove light-locker to prevent screen lock
17-
RUN wget 'https://sourceforge.net/projects/turbovnc/files/2.2.5/turbovnc_2.2.5_amd64.deb/download' -O turbovnc_2.2.5_amd64.deb && \
18-
apt-get install -y -q ./turbovnc_2.2.5_amd64.deb && \
17+
ARG TURBOVNC_VERSION=2.2.6
18+
RUN wget -q "https://sourceforge.net/projects/turbovnc/files/${TURBOVNC_VERSION}/turbovnc_${TURBOVNC_VERSION}_amd64.deb/download" -O turbovnc_${TURBOVNC_VERSION}_amd64.deb && \
19+
apt-get install -y -q ./turbovnc_${TURBOVNC_VERSION}_amd64.deb && \
1920
apt-get remove -y -q light-locker && \
20-
rm ./turbovnc_2.2.5_amd64.deb && \
21+
rm ./turbovnc_${TURBOVNC_VERSION}_amd64.deb && \
2122
ln -s /opt/TurboVNC/bin/* /usr/local/bin/
2223

2324
# apt-get may result in root-owned directories/files under $HOME

0 commit comments

Comments
 (0)