File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,11 @@ RUN apt-get -y update \
14
14
xubuntu-icon-theme
15
15
16
16
# 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 && \
19
20
apt-get remove -y -q light-locker && \
20
- rm ./turbovnc_2.2.5_amd64 .deb && \
21
+ rm ./turbovnc_${TURBOVNC_VERSION}_amd64 .deb && \
21
22
ln -s /opt/TurboVNC/bin/* /usr/local/bin/
22
23
23
24
# apt-get may result in root-owned directories/files under $HOME
You can’t perform that action at this time.
0 commit comments