Skip to content
This repository was archived by the owner on Jul 12, 2023. It is now read-only.

Commit f86bd5b

Browse files
committed
Update TurboVNC to 2.2.6
1 parent f4061a6 commit f86bd5b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
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)